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
Daniel Gustafsson 89d243d521 Fix compilation with OpenSSL 4 2 days ago
..
amcheck Pre-beta mechanical code beautification, step 1: run pgindent. 3 weeks ago
auth_delay Update copyright for 2026 5 months ago
auto_explain Pre-beta mechanical code beautification, step 2: run pgperltidy. 3 weeks ago
basebackup_to_shell Update copyright for 2026 5 months ago
basic_archive Fix dereference in a couple of GUC check hooks 2 months ago
bloom Discount the metapage when estimating number of index pages visited. 2 months ago
bool_plperl Update copyright for 2026 5 months ago
btree_gin Use fallthrough attribute instead of comment 3 months ago
btree_gist Pre-beta mechanical code beautification, step 1: run pgindent. 3 weeks ago
citext Update copyright for 2026 5 months ago
cube Pre-beta mechanical code beautification, step 1: run pgindent. 3 weeks ago
dblink postgres_fdw, dblink: Validate use_scram_passthrough values 3 days ago
dict_int Update copyright for 2026 5 months ago
dict_xsyn Replace pg_mblen() with bounds-checked versions. 4 months ago
earthdistance Update copyright for 2026 5 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. 3 weeks ago
hstore Reduce header inclusions via execnodes.h 3 months ago
hstore_plperl Use palloc_array() in a few more places to avoid overflow 3 weeks ago
hstore_plpython Use palloc_array() in a few more places to avoid overflow 3 weeks ago
intagg Update copyright for 2026 5 months ago
intarray Fix missed ReleaseVariableStats() in intarray's _int_matchsel(). 6 days ago
isn Pre-beta mechanical code beautification, step 1: run pgindent. 3 weeks ago
jsonb_plperl Harmonize function parameter names for Postgres 19. 1 month ago
jsonb_plpython Pre-beta mechanical code beautification, step 1: run pgindent. 3 weeks ago
lo Update copyright for 2026 5 months ago
ltree Re-add regression tests for ltree and intarray 2 weeks ago
ltree_plpython Change StaticAssertVariableIsOfType to be a declaration 4 months ago
oid2name Use pg_malloc_object() and pg_alloc_array() variants in frontend code 3 months ago
pageinspect Adjust some incorrect *GetDatum() macros 1 month ago
passwordcheck Update copyright for 2026 5 months ago
pg_buffercache Adjust some incorrect *GetDatum() macros 1 month ago
pg_freespacemap Update copyright for 2026 5 months ago
pg_logicalinspect Update copyright for 2026 5 months ago
pg_overexplain Fix a set of typos and grammar issues across the tree 1 month ago
pg_plan_advice pg_plan_advice: DO_NOT_SCAN is a simple tag, not a generic one. 2 days ago
pg_prewarm Pre-beta mechanical code beautification, step 2: run pgperltidy. 3 weeks ago
pg_stash_advice pg_stash_advice: Reject overlong stash names in dump file. 2 days ago
pg_stat_statements pg_stat_statements: Set PlannedStmt to NULL after nested utility execution 3 weeks ago
pg_surgery Update copyright for 2026 5 months ago
pg_trgm Avoid casting void * function arguments 1 month ago
pg_visibility Revert "Allow logical replication snapshots to be database-specific" 1 week ago
pg_walinspect Report detailed errors from XLogFindNextRecord() failures. 2 months ago
pgcrypto Pre-beta mechanical code beautification, step 1: run pgindent. 3 weeks ago
pgrowlocks Thread flags through begin-scan APIs 2 months ago
pgstattuple pgstattuple: Optimize pgstattuple_approx() with streaming read 3 months ago
postgres_fdw postgres_fdw: Fix whitespace violation in connection.c 3 days ago
seg Pre-beta mechanical code beautification, step 1: run pgindent. 3 weeks ago
sepgsql Harmonize function parameter names for Postgres 19. 1 month ago
spi refint: Fix segfault in check_foreign_key(). 2 weeks ago
sslinfo Fix compilation with OpenSSL 4 2 days ago
start-scripts Remove gratuitous references to postmaster program 3 years ago
tablefunc Avoid including vacuum.h in tableam.h and heapam.h. 2 months ago
tcn Update copyright for 2026 5 months ago
test_decoding Cover additional errors and corner conditions in repack.c 3 days ago
tsm_system_rows Update copyright for 2026 5 months ago
tsm_system_time Reduce header inclusions via execnodes.h 3 months ago
unaccent Update Unicode data to Unicode 17.0.0 2 months ago
uuid-ossp Fix accidentally cast away qualifiers 4 months ago
vacuumlo Update copyright for 2026 5 months ago
xml2 Pre-beta mechanical code beautification, step 1: run pgindent. 3 weeks ago
Makefile Add pg_stash_advice contrib module. 2 months ago
README
contrib-global.mk
meson.build Add pg_stash_advice contrib module. 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.