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
Jeff Davis 8185bb5347 CREATE SUBSCRIPTION ... SERVER. 2 days ago
..
amcheck Fix variety of typos and grammar mistakes 2 weeks ago
auth_delay Update copyright for 2026 2 months ago
auto_explain instrumentation: Keep time fields as instrtime, convert in callers 2 months ago
basebackup_to_shell Update copyright for 2026 2 months ago
basic_archive basic_archive: Allow archive directory to be missing at startup. 6 days ago
bloom Move instrumentation-related structs to instrument_node.h 2 months ago
bool_plperl Update copyright for 2026 2 months ago
btree_gin Use fallthrough attribute instead of comment 2 weeks ago
btree_gist Improve type handling of varlena structures 4 weeks ago
citext Update copyright for 2026 2 months ago
cube Mark commented out code as unused 1 month ago
dblink Refactor att_align_nominal() to improve performance. 1 month ago
dict_int Update copyright for 2026 2 months ago
dict_xsyn Replace pg_mblen() with bounds-checked versions. 4 weeks ago
earthdistance Update copyright for 2026 2 months ago
file_fdw Fix bogus ctid requirement for dummy-root partitioned targets 1 month ago
fuzzystrmatch fuzzystrmatch: use pg_ascii_toupper(). 2 months ago
hstore hstore: Fix NULL pointer dereference with receive function 3 weeks ago
hstore_plperl Change StaticAssertVariableIsOfType to be a declaration 1 month ago
hstore_plpython Change StaticAssertVariableIsOfType to be a declaration 1 month ago
intagg Update copyright for 2026 2 months ago
intarray Harden _int_matchsel() against being attached to the wrong operator. 4 weeks ago
isn Fix additional fallthrough warnings from clang 2 weeks ago
jsonb_plperl Update copyright for 2026 2 months ago
jsonb_plpython Change StaticAssertVariableIsOfType to be a declaration 1 month ago
lo Update copyright for 2026 2 months ago
ltree Fix more multibyte issues in ltree. 1 week ago
ltree_plpython Change StaticAssertVariableIsOfType to be a declaration 1 month ago
oid2name Use pg_malloc_object() and pg_alloc_array() variants in frontend code 1 week ago
pageinspect Improve type handling of varlena structures 4 weeks ago
passwordcheck Update copyright for 2026 2 months ago
pg_buffercache pgindent fix for 3fccbd94cb 1 month ago
pg_freespacemap Update copyright for 2026 2 months ago
pg_logicalinspect Update copyright for 2026 2 months ago
pg_overexplain Fix additional fallthrough warnings from clang 2 weeks ago
pg_prewarm Don't include wait_event.h in pgstat.h 2 days ago
pg_stat_statements pg_stat_statements: Fix test instability with cache-clobbering builds 1 month ago
pg_surgery Update copyright for 2026 2 months ago
pg_trgm Fix local-variable shadowing in pg_trgm's printSourceNFA(). 6 days ago
pg_visibility Fix flakiness in the pg_visibility VM-only vacuum test by using a temporary table. 1 month ago
pg_walinspect Update copyright for 2026 2 months ago
pgcrypto Use fallthrough attribute instead of comment 2 weeks ago
pgrowlocks Update copyright for 2026 2 months ago
pgstattuple Use relation_close() more consistently in contrib/ 2 months ago
postgres_fdw CREATE SUBSCRIPTION ... SERVER. 2 days ago
seg Mark commented out code as unused 1 month ago
sepgsql Update copyright for 2026 2 months ago
spi Update copyright for 2026 2 months ago
sslinfo Update copyright for 2026 2 months ago
start-scripts Remove gratuitous references to postmaster program 3 years ago
tablefunc Update copyright for 2026 2 months ago
tcn Update copyright for 2026 2 months ago
test_decoding Standardize replication origin naming to use "ReplOrigin". 1 month ago
tsm_system_rows Update copyright for 2026 2 months ago
tsm_system_time Update copyright for 2026 2 months ago
unaccent Fix Python deprecation warning 2 days ago
uuid-ossp Fix accidentally cast away qualifiers 1 month ago
vacuumlo Update copyright for 2026 2 months ago
xml2 Update copyright for 2026 2 months ago
Makefile pg_overexplain: Additional EXPLAIN options for debugging. 12 months ago
README
contrib-global.mk
meson.build Update copyright for 2026 2 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.