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 2268f2b91b Remove useless casts in format arguments 1 week ago
..
amcheck Remove useless casts in format arguments 1 week 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 Use more palloc_object() and palloc_array() in contrib/ 2 weeks ago
basic_archive Remove translation marker from libpq-be-fe-helpers.h. 5 months ago
bloom Use more palloc_object() and palloc_array() in contrib/ 2 weeks ago
bool_plperl Fix erroneous construction of functions' dependencies on transforms. 8 months ago
btree_gin Use more palloc_object() and palloc_array() in contrib/ 2 weeks ago
btree_gist Use more palloc_object() and palloc_array() in contrib/ 2 weeks ago
citext Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 9 months ago
cube Use more palloc_object() and palloc_array() in contrib/ 2 weeks ago
dblink Use CompactAttribute more often, when possible 2 months ago
dict_int Use more palloc_object() and palloc_array() in contrib/ 2 weeks ago
dict_xsyn Use more palloc_object() and palloc_array() in contrib/ 2 weeks ago
earthdistance Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 9 months ago
file_fdw Use more palloc_object() and palloc_array() in contrib/ 2 weeks ago
fuzzystrmatch Remove useless casting to same type 2 weeks ago
hstore Revise APIs for pushJsonbValue() and associated routines. 1 week 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 Use more palloc_object() and palloc_array() in contrib/ 2 weeks ago
isn Clean up int64-related format strings 1 week ago
jsonb_plperl Revise APIs for pushJsonbValue() and associated routines. 1 week ago
jsonb_plpython Revise APIs for pushJsonbValue() and associated routines. 1 week ago
lo Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 9 months ago
ltree Use more palloc_object() and palloc_array() in contrib/ 2 weeks 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 Clean up int64-related format strings 1 week 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 Use more palloc_object() and palloc_array() in contrib/ 2 weeks 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 Use more palloc_object() and palloc_array() in contrib/ 2 weeks ago
pg_visibility Use more palloc_object() and palloc_array() in contrib/ 2 weeks ago
pg_walinspect Use more palloc_object() and palloc_array() in contrib/ 2 weeks ago
pgcrypto Use more palloc_object() and palloc_array() in contrib/ 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 Use more palloc_object() and palloc_array() in contrib/ 2 weeks ago
sepgsql Use more palloc_object() and palloc_array() in contrib/ 2 weeks ago
spi Use more palloc_object() and palloc_array() in contrib/ 2 weeks ago
sslinfo Use more palloc_object() and palloc_array() in contrib/ 2 weeks ago
start-scripts
tablefunc Use more palloc_object() and palloc_array() in contrib/ 2 weeks ago
tcn Use stack allocated StringInfoDatas, where possible 1 month ago
test_decoding Use more palloc_object() and palloc_array() in contrib/ 2 weeks ago
tsm_system_rows Use more palloc_object() and palloc_array() in contrib/ 2 weeks ago
tsm_system_time Use more palloc_object() and palloc_array() in contrib/ 2 weeks ago
unaccent Use more palloc_object() and palloc_array() in contrib/ 2 weeks 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 Use more palloc_object() and palloc_array() in contrib/ 2 weeks ago
Makefile pg_overexplain: Additional EXPLAIN options for debugging. 9 months ago
README
contrib-global.mk
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.