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
Peter Eisentraut 1b0c269f2e Implement unaccent Unicode data update in meson 6 days ago
..
amcheck Reduce header inclusions via execnodes.h 1 week ago
auth_delay Update copyright for 2026 3 months ago
auto_explain instrumentation: Keep time fields as instrtime, convert in callers 2 months ago
basebackup_to_shell Update copyright for 2026 3 months ago
basic_archive basic_archive: Allow archive directory to be missing at startup. 3 weeks ago
bloom bloom: Optimize VACUUM and bulk-deletion with streaming read 2 weeks 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 1 month 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 1 week ago
dict_int Update copyright for 2026 3 months ago
dict_xsyn Replace pg_mblen() with bounds-checked versions. 1 month ago
earthdistance Update copyright for 2026 3 months ago
file_fdw file_fdw: Add regression test for file_fdw with ON_ERROR='set_null' 1 week ago
fuzzystrmatch fuzzystrmatch: use pg_ascii_toupper(). 2 months ago
hstore Reduce header inclusions via execnodes.h 1 week 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. 1 month ago
isn Fix additional fallthrough warnings from clang 4 weeks 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. 4 weeks 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 4 weeks ago
pageinspect Reduce header inclusions via execnodes.h 1 week ago
passwordcheck Update copyright for 2026 3 months ago
pg_buffercache Reduce header inclusions via execnodes.h 1 week 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) 1 week ago
pg_plan_advice pg_plan_advice: Avoid a crash under GEQO. 1 week ago
pg_prewarm Don't include wait_event.h in pgstat.h 3 weeks ago
pg_stat_statements Reduce header inclusions via execnodes.h 1 week ago
pg_surgery Update copyright for 2026 3 months ago
pg_trgm Fix local-variable shadowing in pg_trgm's printSourceNFA(). 3 weeks ago
pg_visibility Add all required calls to TupleDescFinalize() 1 week ago
pg_walinspect Reduce header inclusions via execnodes.h 1 week ago
pgcrypto Use fallthrough attribute instead of comment 1 month ago
pgrowlocks Reduce header inclusions via execnodes.h 1 week ago
pgstattuple pgstattuple: Optimize pgstattuple_approx() with streaming read 2 weeks ago
postgres_fdw Clean up postgres_fdw/t/010_subscription.pl. 1 week 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 1 week 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 1 week ago
unaccent Implement unaccent Unicode data update in meson 6 days 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 1 week ago
Makefile Add pg_plan_advice contrib module. 2 weeks ago
README
contrib-global.mk
meson.build Add pg_plan_advice contrib module. 2 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.