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
Andres Freund ae3df4b341 read_stream: Introduce and use optional batchmode support 3 months ago
..
amcheck read_stream: Introduce and use optional batchmode support 3 months ago
auth_delay Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
auto_explain Introduce PG_MODULE_MAGIC_EXT macro. 3 months ago
basebackup_to_shell Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
basic_archive Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
bloom Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
bool_plperl Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
btree_gin Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
btree_gist Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
citext Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
cube Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
dblink Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
dict_int Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
dict_xsyn Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
earthdistance Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
file_fdw Use PRI?64 instead of "ll?" in format strings (continued). 3 months ago
fuzzystrmatch Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
hstore Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
hstore_plperl Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
hstore_plpython Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
intagg Update copyright for 2025 6 months ago
intarray Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
isn Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
jsonb_plperl Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
jsonb_plpython Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
lo Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
ltree Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
ltree_plpython Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
oid2name Update copyright for 2025 6 months ago
pageinspect Use PRI?64 instead of "ll?" in format strings (continued). 3 months ago
passwordcheck Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
pg_buffercache Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
pg_freespacemap Prevent assertion failure in contrib/pg_freespacemap. 3 months ago
pg_logicalinspect Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
pg_overexplain pg_overexplain: Use PG_MODULE_MAGIC_EXT. 3 months ago
pg_prewarm read_stream: Introduce and use optional batchmode support 3 months ago
pg_stat_statements Remove the query_id_squash_values GUC 3 months ago
pg_surgery Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
pg_trgm Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
pg_visibility read_stream: Introduce and use optional batchmode support 3 months ago
pg_walinspect Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
pgcrypto Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
pgrowlocks Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
pgstattuple Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
postgres_fdw Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
seg Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
sepgsql Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
spi Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
sslinfo Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
start-scripts Remove gratuitous references to postmaster program 2 years ago
tablefunc Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
tcn Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
test_decoding Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
tsm_system_rows Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
tsm_system_time Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
unaccent Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
uuid-ossp Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
vacuumlo Update copyright for 2025 6 months ago
xml2 Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 3 months ago
Makefile pg_overexplain: Additional EXPLAIN options for debugging. 3 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 9 years ago
meson.build pg_overexplain: Additional EXPLAIN options for debugging. 3 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.