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
Etsuro Fujita c318777da8 postgres_fdw: Fix handling of abort-cleanup-failed connections. 2 days ago
..
amcheck amcheck: Fix snapshot usage in bt_index_parent_check 4 months ago
auth_delay Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
auto_explain Allow resetting unknown custom GUCs with reserved prefixes. 9 months ago
basebackup_to_shell Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
basic_archive basic_archive: Allow archive directory to be missing at startup. 2 months ago
bloom Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
bool_plperl Fix erroneous construction of functions' dependencies on transforms. 1 year ago
btree_gin Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
btree_gist Replace pg_mblen() with bounds-checked versions. 3 months ago
citext Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
cube Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
dblink postgres_fdw and dblink should check if backend has MyProcPort 9 months ago
dict_int Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
dict_xsyn Replace pg_mblen() with bounds-checked versions. 3 months ago
earthdistance Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
file_fdw Fix bogus ctid requirement for dummy-root partitioned targets 3 months ago
fuzzystrmatch Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
hstore hstore: Fix NULL pointer dereference with receive function 3 months ago
hstore_plperl Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
hstore_plpython Remove circular #include's between plpython.h and plpy_util.h. 1 year ago
intagg Update copyright for 2025 1 year ago
intarray Harden _int_matchsel() against being attached to the wrong operator. 3 months ago
isn Revert a few small patches that were intended for version 19. 11 months ago
jsonb_plperl Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
jsonb_plpython Remove circular #include's between plpython.h and plpy_util.h. 1 year ago
lo Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
ltree Yet another ltree fix for REL_18_STABLE. 2 months ago
ltree_plpython Remove circular #include's between plpython.h and plpy_util.h. 1 year ago
oid2name Update copyright for 2025 1 year ago
pageinspect Replace pg_mblen() with bounds-checked versions. 3 months ago
passwordcheck Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
pg_buffercache pgindent fix for 3fccbd94cb 3 months ago
pg_freespacemap Prevent assertion failure in contrib/pg_freespacemap. 1 year ago
pg_logicalinspect Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
pg_overexplain Fix pg_overexplain to emit valid output with RANGE_TABLE option. 3 weeks ago
pg_prewarm Allow role created by new test to log in on Windows. 7 months ago
pg_stat_statements Avoid memory leak on error while parsing pg_stat_statements dump file 1 month ago
pg_surgery Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
pg_trgm Fix expanding 'bounds' in pg_trgm's calc_word_similarity() function 3 months ago
pg_visibility read_stream: Introduce and use optional batchmode support 1 year ago
pg_walinspect Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
pgcrypto pgcrypto: Tweak error message for incorrect session key length 3 months ago
pgrowlocks Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
pgstattuple pgstattuple: Improve reports generated for indexes (hash, gist, btree) 7 months ago
postgres_fdw postgres_fdw: Fix handling of abort-cleanup-failed connections. 2 days ago
seg Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
sepgsql Update expected output for contrib/sepgsql's regression tests. 7 months ago
spi Revert a few small patches that were intended for version 19. 11 months ago
sslinfo Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
start-scripts Remove gratuitous references to postmaster program 3 years ago
tablefunc Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
tcn Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
test_decoding Fix re-distributing previously distributed invalidation messages during logical decoding. 11 months ago
tsm_system_rows Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
tsm_system_time Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
unaccent Replace pg_mblen() with bounds-checked versions. 3 months ago
uuid-ossp Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
vacuumlo Update copyright for 2025 1 year ago
xml2 xml2: Fix failure with xslt_process() under -fsanitize=undefined 2 months ago
Makefile pg_overexplain: Additional EXPLAIN options for debugging. 1 year 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. 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.