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 4 weeks ago
..
amcheck amcheck: Fix snapshot usage in bt_index_parent_check 1 month 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 Update copyright for 2026 2 months ago
bloom Move instrumentation-related structs to instrument_node.h 2 months ago
bool_plperl Update copyright for 2026 2 months ago
btree_gin Update copyright for 2026 2 months ago
btree_gist Mark commented out code as unused 1 month 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 Update copyright for 2026 2 months 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 Mark commented out code as unused 1 month ago
hstore_plperl Change StaticAssertVariableIsOfType to be a declaration 4 weeks ago
hstore_plpython Change StaticAssertVariableIsOfType to be a declaration 4 weeks ago
intagg Update copyright for 2026 2 months ago
intarray Fix accidentally cast away qualifiers 1 month ago
isn Update copyright for 2026 2 months ago
jsonb_plperl Update copyright for 2026 2 months ago
jsonb_plpython Change StaticAssertVariableIsOfType to be a declaration 4 weeks ago
lo Update copyright for 2026 2 months ago
ltree Mark commented out code as unused 1 month ago
ltree_plpython Change StaticAssertVariableIsOfType to be a declaration 4 weeks ago
oid2name oid2name: Add relation path to the information provided by -x/--extended 4 weeks ago
pageinspect Fix accidentally cast away qualifiers 1 month 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 Update copyright for 2026 2 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 1 month ago
pg_surgery Update copyright for 2026 2 months ago
pg_trgm Fix various instances of undefined behavior 4 weeks ago
pg_visibility Fix flakiness in the pg_visibility VM-only vacuum test by using a temporary table. 4 weeks ago
pg_walinspect Update copyright for 2026 2 months ago
pgcrypto Update copyright for 2026 2 months ago
pgrowlocks Update copyright for 2026 2 months ago
pgstattuple Use relation_close() more consistently in contrib/ 2 months ago
postgres_fdw Update copyright for 2026 2 months 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 Update copyright for 2026 2 months 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. 11 months ago
README Rename 'gmake' to 'make' in docs and recommended commands 12 years ago
contrib-global.mk Respect TEMP_CONFIG when pg_regress_check and friends are called 10 years ago
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.