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
Álvaro Herrera 0f65f3eec4
Fix squashing algorithm for query texts
11 months ago
..
amcheck Fix a few duplicate words in comments 1 year ago
auth_delay Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
auto_explain Revert "Don't lock partitions pruned by initial pruning" 11 months ago
basebackup_to_shell Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
basic_archive Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
bloom Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
bool_plperl Fix erroneous construction of functions' dependencies on transforms. 1 year ago
btree_gin Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
btree_gist Rename gist stratnum support function 11 months ago
citext Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
cube Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
dblink Avoid resource leaks when a dblink connection fails. 11 months ago
dict_int Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
dict_xsyn Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
earthdistance Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
file_fdw Disallow "=" in names of reloptions and foreign-data options. 11 months ago
fuzzystrmatch Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
hstore Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
hstore_plperl Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
hstore_plpython Remove circular #include's between plpython.h and plpy_util.h. 1 year ago
intagg Update copyright for 2025 1 year ago
intarray Fix GIN's shimTriConsistentFn to not corrupt its input. 1 year ago
isn Revert a few small patches that were intended for version 19. 11 months ago
jsonb_plperl Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
jsonb_plpython Remove circular #include's between plpython.h and plpy_util.h. 1 year ago
lo Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
ltree Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
ltree_plpython Remove circular #include's between plpython.h and plpy_util.h. 1 year ago
oid2name Update copyright for 2025 1 year ago
pageinspect Be more wary of corrupt data in pageinspect's heap_page_items(). 1 year ago
passwordcheck Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
pg_buffercache Fix a few duplicate words in comments 1 year ago
pg_freespacemap Prevent assertion failure in contrib/pg_freespacemap. 1 year ago
pg_logicalinspect Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
pg_overexplain Revert support for improved tracking of nested queries 11 months ago
pg_prewarm pg_prewarm: Allow autoprewarm to use more than 1GB to dump blocks. 11 months ago
pg_stat_statements Fix squashing algorithm for query texts 11 months ago
pg_surgery Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
pg_trgm Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
pg_visibility read_stream: Introduce and use optional batchmode support 1 year ago
pg_walinspect Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
pgcrypto Fix incorrect format placeholder 1 year ago
pgrowlocks Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
pgstattuple Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
postgres_fdw Revert "postgres_fdw: Inherit the local transaction's access/deferrable modes." 11 months ago
seg Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
sepgsql Fix incorrect year in some copyright notices 11 months ago
spi Revert a few small patches that were intended for version 19. 11 months ago
sslinfo Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
start-scripts Remove gratuitous references to postmaster program 3 years ago
tablefunc Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
tcn Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
test_decoding Fix xmin advancement during fast_forward decoding. 1 year ago
tsm_system_rows Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
tsm_system_time Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
unaccent Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
uuid-ossp Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
vacuumlo Update copyright for 2025 1 year ago
xml2 Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 1 year ago
Makefile pg_overexplain: Additional EXPLAIN options for debugging. 1 year 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. 1 year 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.