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
Michael Paquier 3c5ec35dea oid2name: Add relation path to the information provided by -x/--extended 2 months ago
..
amcheck amcheck: Fix snapshot usage in bt_index_parent_check 2 months 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 Update copyright for 2026 3 months ago
bloom Move instrumentation-related structs to instrument_node.h 2 months ago
bool_plperl Update copyright for 2026 3 months ago
btree_gin Update copyright for 2026 3 months ago
btree_gist Mark commented out code as unused 2 months ago
citext Update copyright for 2026 3 months ago
cube Mark commented out code as unused 2 months ago
dblink Refactor att_align_nominal() to improve performance. 2 months ago
dict_int Update copyright for 2026 3 months ago
dict_xsyn Update copyright for 2026 3 months ago
earthdistance Update copyright for 2026 3 months ago
file_fdw Fix bogus ctid requirement for dummy-root partitioned targets 2 months ago
fuzzystrmatch fuzzystrmatch: use pg_ascii_toupper(). 2 months ago
hstore Mark commented out code as unused 2 months 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 Fix accidentally cast away qualifiers 2 months ago
isn Update copyright for 2026 3 months 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 Mark commented out code as unused 2 months ago
ltree_plpython Change StaticAssertVariableIsOfType to be a declaration 2 months ago
oid2name oid2name: Add relation path to the information provided by -x/--extended 2 months ago
pageinspect Fix accidentally cast away qualifiers 2 months ago
passwordcheck Update copyright for 2026 3 months ago
pg_buffercache pgindent fix for 3fccbd94cb 2 months ago
pg_freespacemap Update copyright for 2026 3 months ago
pg_logicalinspect Update copyright for 2026 3 months ago
pg_overexplain Update copyright for 2026 3 months ago
pg_prewarm bufmgr: Change BufferDesc.state to be a 64-bit atomic 2 months ago
pg_stat_statements pg_stat_statements: Fix test instability with cache-clobbering builds 2 months ago
pg_surgery Update copyright for 2026 3 months ago
pg_trgm Fix various instances of undefined behavior 2 months ago
pg_visibility Fix flakiness in the pg_visibility VM-only vacuum test by using a temporary table. 2 months ago
pg_walinspect Update copyright for 2026 3 months ago
pgcrypto Update copyright for 2026 3 months ago
pgrowlocks Update copyright for 2026 3 months ago
pgstattuple Use relation_close() more consistently in contrib/ 3 months ago
postgres_fdw Update copyright for 2026 3 months 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
tablefunc Update copyright for 2026 3 months 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 Update copyright for 2026 3 months ago
unaccent Update copyright for 2026 3 months ago
uuid-ossp Fix accidentally cast away qualifiers 2 months ago
vacuumlo Update copyright for 2026 3 months ago
xml2 Update copyright for 2026 3 months ago
Makefile pg_overexplain: Additional EXPLAIN options for debugging. 1 year ago
README
contrib-global.mk
meson.build Update copyright for 2026 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.