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
Tom Lane e2b64fcef3 Add cross-type comparisons to contrib/btree_gin. 6 months ago
..
amcheck amcheck: Improve confusing message 6 months ago
auth_delay
auto_explain Revert "Don't lock partitions pruned by initial pruning" 7 months ago
basebackup_to_shell meson: Increase minimum version to 0.57.2 6 months ago
basic_archive
bloom
bool_plperl
btree_gin Add cross-type comparisons to contrib/btree_gin. 6 months ago
btree_gist Rename gist stratnum support function 7 months ago
citext
cube
dblink meson: Increase minimum version to 0.57.2 6 months ago
dict_int Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 9 months ago
dict_xsyn
earthdistance
file_fdw Disallow "=" in names of reloptions and foreign-data options. 7 months ago
fuzzystrmatch
hstore Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 9 months ago
hstore_plperl
hstore_plpython Remove circular #include's between plpython.h and plpy_util.h. 8 months ago
intagg
intarray
isn Use pg_ascii_tolower()/pg_ascii_toupper() where appropriate. 6 months ago
jsonb_plperl
jsonb_plpython Remove circular #include's between plpython.h and plpy_util.h. 8 months ago
lo
ltree Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 9 months ago
ltree_plpython Remove circular #include's between plpython.h and plpy_util.h. 8 months ago
oid2name
pageinspect Be more wary of corrupt data in pageinspect's heap_page_items(). 8 months ago
passwordcheck
pg_buffercache Silence valgrind about pg_numa_touch_mem_if_required 6 months ago
pg_freespacemap
pg_logicalinspect Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 9 months ago
pg_overexplain Revert support for improved tracking of nested queries 7 months ago
pg_prewarm pg_prewarm: Allow autoprewarm to use more than 1GB to dump blocks. 7 months ago
pg_stat_statements Show sizes of FETCH queries as constants in pg_stat_statements 6 months ago
pg_surgery
pg_trgm
pg_visibility
pg_walinspect
pgcrypto
pgrowlocks
pgstattuple
postgres_fdw meson: Increase minimum version to 0.57.2 6 months ago
seg
sepgsql Fix incorrect year in some copyright notices 7 months ago
spi Use pg_ascii_tolower()/pg_ascii_toupper() where appropriate. 6 months ago
sslinfo
start-scripts
tablefunc
tcn
test_decoding Fix re-distributing previously distributed invalidation messages during logical decoding. 6 months ago
tsm_system_rows
tsm_system_time
unaccent
uuid-ossp Use PG_MODULE_MAGIC_EXT in our installable shared libraries. 9 months ago
vacuumlo
xml2 xml2: Improve error handling of libxml2 calls 6 months ago
Makefile
README
contrib-global.mk
meson.build

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.