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 9790affcce Fix stray references to SubscriptRef 2 weeks ago
..
amcheck Fix amcheck's handling of half-dead B-tree pages 2 weeks ago
auth_delay Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 9 months ago
auto_explain Allow resetting unknown custom GUCs with reserved prefixes. 5 months ago
basebackup_to_shell meson: Increase minimum version to 0.57.2 6 months ago
basic_archive Remove translation marker from libpq-be-fe-helpers.h. 5 months ago
bloom Don't rely on pointer arithmetic with Pointer type 2 weeks ago
bool_plperl Fix erroneous construction of functions' dependencies on transforms. 8 months ago
btree_gin Update some timestamp[tz] functions to use soft-error reporting 2 weeks ago
btree_gist Remove useless casting to same type 2 weeks ago
citext Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 9 months ago
cube Remove useless casting to same type 2 weeks ago
dblink Use CompactAttribute more often, when possible 2 months ago
dict_int Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 9 months ago
dict_xsyn Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 9 months ago
earthdistance Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 9 months ago
file_fdw Use CompactAttribute more often, when possible 2 months ago
fuzzystrmatch Remove useless casting to same type 2 weeks ago
hstore Fix stray references to SubscriptRef 2 weeks ago
hstore_plperl Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 9 months ago
hstore_plpython Remove circular #include's between plpython.h and plpy_util.h. 8 months ago
intagg Update copyright for 2025 12 months ago
intarray Track the maximum possible frequency of non-MCE array elements. 3 months ago
isn Fix various incorrect filename references 3 months ago
jsonb_plperl Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 9 months ago
jsonb_plpython Remove circular #include's between plpython.h and plpy_util.h. 8 months ago
lo Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 9 months ago
ltree Fix contrib/ltree's subpath() with negative offset. 2 months ago
ltree_plpython Remove circular #include's between plpython.h and plpy_util.h. 8 months ago
oid2name Update copyright for 2025 12 months ago
pageinspect Don't include access/htup_details.h in executor/tuptable.h 2 months ago
passwordcheck Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 9 months ago
pg_buffercache pg_buffercache: Add pg_buffercache_mark_dirty{,_relation,_all}() 3 weeks ago
pg_freespacemap Prevent assertion failure in contrib/pg_freespacemap. 9 months ago
pg_logicalinspect Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 9 months ago
pg_overexplain Keep track of what RTIs a Result node is scanning. 3 months ago
pg_prewarm bufmgr: Allow some buffer state modifications while holding header lock 1 month ago
pg_stat_statements pg_stat_statements: Fix handling of duplicate constant locations 2 months ago
pg_surgery Fix some confusing uses of const 2 months ago
pg_trgm Put "excludeOnly" GIN scan keys at the end of the scankey array. 4 months ago
pg_visibility Improve TAP tests by replacing ok() with better Test::More functions 2 months ago
pg_walinspect Use XLogRecPtrIsValid() in various places 1 month ago
pgcrypto Remove useless casting to same type 2 weeks ago
pgrowlocks Add missing Datum conversions 4 months ago
pgstattuple pgstattuple: Improve reports generated for indexes (hash, gist, btree) 3 months ago
postgres_fdw Have the planner replace COUNT(ANY) with COUNT(*), when possible 3 weeks ago
seg Allow redeclaration of typedef yyscan_t 3 months ago
sepgsql Update expected output for contrib/sepgsql's regression tests. 2 months ago
spi Use pg_ascii_tolower()/pg_ascii_toupper() where appropriate. 6 months ago
sslinfo Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 9 months ago
start-scripts Remove gratuitous references to postmaster program 3 years ago
tablefunc Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 9 months ago
tcn Use stack allocated StringInfoDatas, where possible 1 month ago
test_decoding Add slotsync skip statistics. 3 weeks ago
tsm_system_rows Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 9 months ago
tsm_system_time Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 9 months ago
unaccent Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 9 months ago
uuid-ossp Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 9 months ago
vacuumlo Update copyright for 2025 12 months ago
xml2 Don't include access/htup_details.h in executor/tuptable.h 2 months ago
Makefile pg_overexplain: Additional EXPLAIN options for debugging. 9 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 pg_overexplain: Additional EXPLAIN options for debugging. 9 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.