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
Tom Lane 3a7a3eaaf9 Put "excludeOnly" GIN scan keys at the end of the scankey array. 2 weeks ago
..
amcheck Run pgperltidy 2 months ago
auth_delay Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
auto_explain Allow resetting unknown custom GUCs with reserved prefixes. 1 month ago
basebackup_to_shell Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
basic_archive Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
bloom Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
bool_plperl Fix erroneous construction of functions' dependencies on transforms. 5 months ago
btree_gin Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
btree_gist btree_gist: Merge the last two versions into version 1.8 2 months ago
citext Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
cube Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
dblink postgres_fdw and dblink should check if backend has MyProcPort 1 month ago
dict_int Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
dict_xsyn Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
earthdistance Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
file_fdw Disallow "=" in names of reloptions and foreign-data options. 3 months ago
fuzzystrmatch Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
hstore Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
hstore_plperl Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
hstore_plpython Remove circular #include's between plpython.h and plpy_util.h. 5 months ago
intagg Update copyright for 2025 8 months ago
intarray Fix incorrect lack of Datum conversion in _int_matchsel() 1 month ago
isn Revert a few small patches that were intended for version 19. 3 months ago
jsonb_plperl Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
jsonb_plpython Remove circular #include's between plpython.h and plpy_util.h. 5 months ago
lo Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
ltree Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
ltree_plpython Remove circular #include's between plpython.h and plpy_util.h. 5 months ago
oid2name Update copyright for 2025 8 months ago
pageinspect Be more wary of corrupt data in pageinspect's heap_page_items(). 5 months ago
passwordcheck Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
pg_buffercache Add CHECK_FOR_INTERRUPTS in contrib/pg_buffercache functions. 3 weeks ago
pg_freespacemap Prevent assertion failure in contrib/pg_freespacemap. 6 months ago
pg_logicalinspect Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
pg_overexplain Revert support for improved tracking of nested queries 3 months ago
pg_prewarm pg_prewarm: Allow autoprewarm to use more than 1GB to dump blocks. 3 months ago
pg_stat_statements Fix typo in comment 3 months ago
pg_surgery Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
pg_trgm Put "excludeOnly" GIN scan keys at the end of the scankey array. 2 weeks ago
pg_visibility read_stream: Introduce and use optional batchmode support 5 months ago
pg_walinspect Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
pgcrypto Fix incorrect format placeholder 5 months ago
pgrowlocks Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
pgstattuple Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
postgres_fdw postgres_fdw: Fix tests with ANALYZE and remote sampling 4 weeks ago
seg Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
sepgsql Fix incorrect year in some copyright notices 4 months ago
spi Revert a few small patches that were intended for version 19. 3 months ago
sslinfo Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
start-scripts Remove gratuitous references to postmaster program 3 years ago
tablefunc Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
tcn Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
test_decoding Fix re-distributing previously distributed invalidation messages during logical decoding. 3 months ago
tsm_system_rows Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
tsm_system_time Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
unaccent Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
uuid-ossp Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 6 months ago
vacuumlo Update copyright for 2025 8 months ago
xml2 Fix incompatibility with libxml2 >= 2.14 2 months ago
Makefile pg_overexplain: Additional EXPLAIN options for debugging. 6 months ago
README
contrib-global.mk Respect TEMP_CONFIG when pg_regress_check and friends are called 10 years ago
meson.build pg_overexplain: Additional EXPLAIN options for debugging. 6 months 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.