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
Dean Rasheed 88327092ff Add support for INSERT ... ON CONFLICT DO SELECT. 4 weeks ago
..
amcheck Improve type handling of varlena structures 4 weeks 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 Improve type handling of varlena structures 4 weeks ago
citext Update copyright for 2026 2 months ago
cube Mark commented out code as unused 2 months ago
dblink Refactor att_align_nominal() to improve performance. 1 month ago
dict_int Update copyright for 2026 2 months ago
dict_xsyn Replace pg_mblen() with bounds-checked versions. 4 weeks ago
earthdistance Update copyright for 2026 2 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 Replace pg_mblen() with bounds-checked versions. 4 weeks ago
hstore_plperl Change StaticAssertVariableIsOfType to be a declaration 1 month ago
hstore_plpython Change StaticAssertVariableIsOfType to be a declaration 1 month ago
intagg Update copyright for 2026 2 months ago
intarray Harden _int_matchsel() against being attached to the wrong operator. 4 weeks 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 1 month ago
lo Update copyright for 2026 2 months ago
ltree Replace pg_mblen() with bounds-checked versions. 4 weeks ago
ltree_plpython Change StaticAssertVariableIsOfType to be a declaration 1 month ago
oid2name oid2name: Add relation path to the information provided by -x/--extended 1 month ago
pageinspect Improve type handling of varlena structures 4 weeks 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 Store information about Append node consolidation in the final plan. 4 weeks 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 Code coverage for most pg_mblen* calls. 4 weeks ago
pg_visibility Fix flakiness in the pg_visibility VM-only vacuum test by using a temporary table. 1 month ago
pg_walinspect Update copyright for 2026 2 months ago
pgcrypto Fix test "NUL byte in text decrypt" for --without-zlib builds. 4 weeks ago
pgrowlocks Update copyright for 2026 2 months ago
pgstattuple Use relation_close() more consistently in contrib/ 2 months ago
postgres_fdw Add support for INSERT ... ON CONFLICT DO SELECT. 4 weeks ago
seg Mark commented out code as unused 2 months 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 Replace pg_mblen() with bounds-checked versions. 4 weeks 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. 12 months ago
README
contrib-global.mk
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.