You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
postgres/contrib
Peter Eisentraut fb1a18810f Remove ts_locale.c's lowerstr() 1 year ago
..
amcheck Remove remants of "snapshot too old" 1 year ago
auth_delay Remove unused #include's from contrib, pl, test .c files 1 year ago
auto_explain Simplify executor's determination of whether to use parallelism. 1 year ago
basebackup_to_shell Update copyright for 2024 2 years ago
basic_archive Remove unused #include's from contrib, pl, test .c files 1 year ago
bloom Remove useless casts to (void *) 1 year ago
bool_plperl Update copyright for 2024 2 years ago
btree_gin Remove unused #include's from contrib, pl, test .c files 1 year ago
btree_gist Remove useless casts to (void *) 1 year ago
citext Remove unused #include's from contrib, pl, test .c files 1 year ago
cube Include bison header files into implementation files 1 year ago
dblink Don't bother checking the result of SPI_connect[_ext] anymore. 1 year ago
dict_int Update copyright for 2024 2 years ago
dict_xsyn Remove ts_locale.c's lowerstr() 1 year ago
earthdistance contrib/earthdistance: Use SQL-standard function bodies. 1 year ago
file_fdw Remove useless casts to (void *) 1 year ago
fuzzystrmatch Remove unused #include's from contrib, pl, test .c files 1 year ago
hstore Remove useless casts to (void *) 1 year ago
hstore_plperl Update copyright for 2024 2 years ago
hstore_plpython Update copyright for 2024 2 years ago
intagg Update copyright for 2024 2 years ago
intarray Remove useless casts to (void *) 1 year ago
isn Remove unused #include's from contrib, pl, test .c files 1 year ago
jsonb_plperl Update copyright for 2024 2 years ago
jsonb_plpython Update copyright for 2024 2 years ago
lo contrib/lo: Use SQL-standard function bodies 1 year ago
ltree Remove ts_locale.c's t_isdigit(), t_isspace(), t_isprint() 1 year ago
ltree_plpython Update copyright for 2024 2 years ago
oid2name Apply more quoting to GUC names in messages 1 year ago
pageinspect Remove unused #include's from contrib, pl, test .c files 1 year ago
passwordcheck Deprecate MD5 passwords. 1 year ago
pg_buffercache Add pg_buffercache_evict() function for testing. 2 years ago
pg_freespacemap pg_freespacemap: Use SQL-standard function bodies 1 year ago
pg_logicalinspect Add contrib/pg_logicalinspect. 1 year ago
pg_prewarm Remove unused #include's from contrib, pl, test .c files 1 year ago
pg_stat_statements Fix further fallout from EXPLAIN ANALYZE BUFFERS change 1 year ago
pg_surgery Remove unused #include's from contrib, pl, test .c files 1 year ago
pg_trgm Remove ts_locale.c's lowerstr() 1 year ago
pg_visibility Remove unused #include's from contrib, pl, test .c files 1 year ago
pg_walinspect Assign error codes where missing for user-facing failures 1 year ago
pgcrypto Remove useless casts to (void *) 1 year ago
pgrowlocks Remove unused #include's from contrib, pl, test .c files 1 year ago
pgstattuple Remove unused #include's from contrib, pl, test .c files 1 year ago
postgres_fdw Enable BUFFERS with EXPLAIN ANALYZE by default 1 year ago
seg Use generateClonedIndexStmt to propagate CREATE INDEX to partitions. 1 year ago
sepgsql Add pg_constraint rows for not-null constraints 1 year ago
spi Remove unused #include's from contrib, pl, test .c files 1 year ago
sslinfo Revert "Add notBefore and notAfter to SSL cert info display" 2 years ago
start-scripts Remove gratuitous references to postmaster program 3 years ago
tablefunc Remove unused #include's from contrib, pl, test .c files 1 year ago
tcn Update copyright for 2024 2 years ago
test_decoding Fix invalidation of local pgstats references for entry reinitialization 1 year ago
tsm_system_rows Remove unused #include's from contrib, pl, test .c files 1 year ago
tsm_system_time Remove unused #include's from contrib, pl, test .c files 1 year ago
unaccent Remove ts_locale.c's t_isdigit(), t_isspace(), t_isprint() 1 year ago
uuid-ossp Make the order of the header file includes consistent 2 years ago
vacuumlo Apply more quoting to GUC names in messages 1 year ago
xml2 xml2: Add tests for functions xpath_nodeset() and xpath_list() 1 year ago
Makefile Add contrib/pg_logicalinspect. 1 year ago
README
contrib-global.mk Respect TEMP_CONFIG when pg_regress_check and friends are called 10 years ago
meson.build Add contrib/pg_logicalinspect. 1 year ago

README

The PostgreSQL contrib tree
---------------------------

This subtree contains porting tools, analysis utilities, and plug-in
features that are not part of the core PostgreSQL system, mainly
because they address a limited audience or are too experimental to be
part of the main source tree. This does not preclude their
usefulness.

User documentation for each module appears in the main SGML
documentation.

When building from the source distribution, these modules are not
built automatically, unless you build the "world" target. You can
also build and install them all by running "make all" and "make
install" in this directory; or to build and install just one selected
module, do the same in that module's subdirectory.

Some directories supply new user-defined functions, operators, or
types. To make use of one of these modules, after you have installed
the code you need to register the new SQL objects in the database
system by executing a CREATE EXTENSION command. In a fresh database,
you can simply do

CREATE EXTENSION module_name;

See the PostgreSQL documentation for more information about this
procedure.