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
Andres Freund 8df3c48e46 Use UnlockReleaseBuffer() in more places 2 days ago
..
amcheck Use UnlockReleaseBuffer() in more places 2 days ago
auth_delay Update copyright for 2026 3 months ago
auto_explain instrumentation: Keep time fields as instrtime, convert in callers 3 months ago
basebackup_to_shell Update copyright for 2026 3 months ago
basic_archive Fix dereference in a couple of GUC check hooks 6 days ago
bloom Discount the metapage when estimating number of index pages visited. 1 week ago
bool_plperl Update copyright for 2026 3 months ago
btree_gin Use fallthrough attribute instead of comment 1 month ago
btree_gist Improve type handling of varlena structures 2 months ago
citext Update copyright for 2026 3 months ago
cube Mark commented out code as unused 2 months ago
dblink Reduce header inclusions via execnodes.h 2 weeks ago
dict_int Update copyright for 2026 3 months ago
dict_xsyn Replace pg_mblen() with bounds-checked versions. 2 months ago
earthdistance Update copyright for 2026 3 months ago
file_fdw file_fdw: Add regression test for file_fdw with ON_ERROR='set_null' 2 weeks ago
fuzzystrmatch fuzzystrmatch: use pg_ascii_toupper(). 3 months ago
hstore Reduce header inclusions via execnodes.h 2 weeks ago
hstore_plperl Change StaticAssertVariableIsOfType to be a declaration 2 months ago
hstore_plpython Change StaticAssertVariableIsOfType to be a declaration 2 months ago
intagg Update copyright for 2026 3 months ago
intarray Harden _int_matchsel() against being attached to the wrong operator. 2 months ago
isn Fix additional fallthrough warnings from clang 1 month ago
jsonb_plperl Update copyright for 2026 3 months ago
jsonb_plpython Change StaticAssertVariableIsOfType to be a declaration 2 months ago
lo Update copyright for 2026 3 months ago
ltree Fix more multibyte issues in ltree. 1 month ago
ltree_plpython Change StaticAssertVariableIsOfType to be a declaration 2 months ago
oid2name Use pg_malloc_object() and pg_alloc_array() variants in frontend code 1 month ago
pageinspect Use UnlockReleaseBuffer() in more places 2 days ago
passwordcheck Update copyright for 2026 3 months ago
pg_buffercache Reduce header inclusions via execnodes.h 2 weeks ago
pg_freespacemap Update copyright for 2026 3 months ago
pg_logicalinspect Update copyright for 2026 3 months ago
pg_overexplain SQL Property Graph Queries (SQL/PGQ) 2 weeks ago
pg_plan_advice pg_plan_advice: pgindent 3 days ago
pg_prewarm Don't include wait_event.h in pgstat.h 3 weeks ago
pg_stat_statements Avoid memory leak on error while parsing pg_stat_statements dump file 3 days ago
pg_surgery Update copyright for 2026 3 months ago
pg_trgm Fix local-variable shadowing in pg_trgm's printSourceNFA(). 4 weeks ago
pg_visibility Add all required calls to TupleDescFinalize() 2 weeks ago
pg_walinspect Report detailed errors from XLogFindNextRecord() failures. 6 days ago
pgcrypto Use fallthrough attribute instead of comment 1 month ago
pgrowlocks Reduce header inclusions via execnodes.h 2 weeks ago
pgstattuple pgstattuple: Optimize pgstattuple_approx() with streaming read 2 weeks ago
postgres_fdw ALTER SUBSCRIPTION ... SERVER test. 2 weeks ago
seg Mark commented out code as unused 2 months ago
sepgsql Update copyright for 2026 3 months ago
spi Update copyright for 2026 3 months ago
sslinfo Update copyright for 2026 3 months ago
start-scripts Remove gratuitous references to postmaster program 3 years ago
tablefunc Reduce header inclusions via execnodes.h 2 weeks ago
tcn Update copyright for 2026 3 months ago
test_decoding Standardize replication origin naming to use "ReplOrigin". 2 months ago
tsm_system_rows Update copyright for 2026 3 months ago
tsm_system_time Reduce header inclusions via execnodes.h 2 weeks ago
unaccent Update Unicode data to Unicode 17.0.0 1 week ago
uuid-ossp Fix accidentally cast away qualifiers 2 months ago
vacuumlo Update copyright for 2026 3 months ago
xml2 Reduce header inclusions via execnodes.h 2 weeks ago
Makefile Add pg_plan_advice contrib module. 3 weeks ago
README
contrib-global.mk
meson.build Add pg_plan_advice contrib module. 3 weeks 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.