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 c0f17b04d9 hstore_plperl: Add CHECK_FOR_INTERRUPTS() in reference-unwinding loop. 4 days ago
..
amcheck amcheck: Use correct varlena size accessor in bt_normalize_tuple() 1 week ago
auth_delay Update copyright for 2026 6 months ago
auto_explain Pre-beta mechanical code beautification, step 2: run pgperltidy. 1 month ago
basebackup_to_shell Update copyright for 2026 6 months ago
basic_archive Fix dereference in a couple of GUC check hooks 3 months ago
bloom Discount the metapage when estimating number of index pages visited. 3 months ago
bool_plperl Update copyright for 2026 6 months ago
btree_gin Use fallthrough attribute instead of comment 4 months ago
btree_gist Pre-beta mechanical code beautification, step 1: run pgindent. 1 month ago
citext Update copyright for 2026 6 months ago
cube Pre-beta mechanical code beautification, step 1: run pgindent. 1 month ago
dblink postgres_fdw, dblink: Validate use_scram_passthrough values 4 weeks ago
dict_int Update copyright for 2026 6 months ago
dict_xsyn Replace pg_mblen() with bounds-checked versions. 4 months ago
earthdistance Update copyright for 2026 6 months ago
file_fdw file_fdw: Add regression test for file_fdw with ON_ERROR='set_null' 3 months ago
fuzzystrmatch Pre-beta mechanical code beautification, step 1: run pgindent. 1 month ago
hstore Reduce header inclusions via execnodes.h 3 months ago
hstore_plperl hstore_plperl: Add CHECK_FOR_INTERRUPTS() in reference-unwinding loop. 4 days ago
hstore_plpython Use palloc_array() in a few more places to avoid overflow 1 month ago
intagg Update copyright for 2026 6 months ago
intarray Fix missed ReleaseVariableStats() in intarray's _int_matchsel(). 4 weeks ago
isn Pre-beta mechanical code beautification, step 1: run pgindent. 1 month ago
jsonb_plperl jsonb_plperl, jsonb_plpython: Fix unguarded recursion and loops. 5 days ago
jsonb_plpython jsonb_plperl, jsonb_plpython: Fix unguarded recursion and loops. 5 days ago
lo Update copyright for 2026 6 months ago
ltree Fix int32 overflow in ltree_compare() 6 days ago
ltree_plpython Change StaticAssertVariableIsOfType to be a declaration 5 months ago
oid2name Use pg_malloc_object() and pg_alloc_array() variants in frontend code 4 months ago
pageinspect Adjust some incorrect *GetDatum() macros 2 months ago
passwordcheck Update copyright for 2026 6 months ago
pg_buffercache pg_buffercache: restore rowtype verification in pg_buffercache_pages() 2 weeks ago
pg_freespacemap Update copyright for 2026 6 months ago
pg_logicalinspect Update copyright for 2026 6 months ago
pg_overexplain Fix a set of typos and grammar issues across the tree 2 months ago
pg_plan_advice pg_plan_advice: DO_NOT_SCAN is a simple tag, not a generic one. 3 weeks ago
pg_prewarm Pre-beta mechanical code beautification, step 2: run pgperltidy. 1 month ago
pg_stash_advice pg_stash_advice: Reject overlong stash names in dump file. 3 weeks ago
pg_stat_statements pg_stat_statements: Set PlannedStmt to NULL after nested utility execution 1 month ago
pg_surgery pg_surgery: Fix off-by-one bug with heap offset 2 weeks ago
pg_trgm Avoid casting void * function arguments 2 months ago
pg_visibility Revert "Allow logical replication snapshots to be database-specific" 4 weeks ago
pg_walinspect Report detailed errors from XLogFindNextRecord() failures. 3 months ago
pgcrypto Pre-beta mechanical code beautification, step 1: run pgindent. 1 month ago
pgrowlocks Thread flags through begin-scan APIs 3 months ago
pgstattuple pgstattuple: Optimize pgstattuple_approx() with streaming read 3 months ago
postgres_fdw Fix oversight in commit aa1f93a33. 1 week ago
seg seg: Fix seg_out() to preserve the upper boundary's certainty indicator 2 weeks ago
sepgsql Harmonize function parameter names for Postgres 19. 2 months ago
spi refint: Remove plan cache. 2 weeks ago
sslinfo Fix compilation with OpenSSL 4 3 weeks ago
start-scripts Remove gratuitous references to postmaster program 3 years ago
tablefunc Avoid including vacuum.h in tableam.h and heapam.h. 3 months ago
tcn Update copyright for 2026 6 months ago
test_decoding Disallow direct use of the pgrepack logical decoding plugin 2 weeks ago
tsm_system_rows Update copyright for 2026 6 months ago
tsm_system_time Reduce header inclusions via execnodes.h 3 months ago
unaccent Update Unicode data to Unicode 17.0.0 3 months ago
uuid-ossp Fix accidentally cast away qualifiers 5 months ago
vacuumlo Update copyright for 2026 6 months ago
xml2 xml2: Fix crash with namespace nodes in xpath_nodeset() 2 weeks ago
Makefile Add pg_stash_advice contrib module. 3 months ago
README
contrib-global.mk
meson.build Add pg_stash_advice contrib module. 3 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.