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 Geoghegan 93ee38eade Teach pageinspect about nbtree deduplication. 6 years ago
..
adminpack Remove some dead code in contrib/adminpack/ 6 years ago
amcheck Add deduplication to nbtree. 6 years ago
auth_delay Update copyrights for 2020 6 years ago
auto_explain Update copyrights for 2020 6 years ago
bloom Introduce IndexAM fields for parallel vacuum. 6 years ago
btree_gin Remove support for upgrading extensions from "unpackaged" state. 6 years ago
btree_gist Remove support for upgrading extensions from "unpackaged" state. 6 years ago
citext Move src/backend/utils/hash/hashfn.c to src/common 6 years ago
cube Remove support for upgrading extensions from "unpackaged" state. 6 years ago
dblink Fix compile failure. 6 years ago
dict_int Remove support for upgrading extensions from "unpackaged" state. 6 years ago
dict_xsyn Remove support for upgrading extensions from "unpackaged" state. 6 years ago
earthdistance Remove support for upgrading extensions from "unpackaged" state. 6 years ago
file_fdw Update copyrights for 2020 6 years ago
fuzzystrmatch Remove support for upgrading extensions from "unpackaged" state. 6 years ago
hstore Move src/backend/utils/hash/hashfn.c to src/common 6 years ago
hstore_plperl Mark some contrib modules as "trusted". 6 years ago
hstore_plpython Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
intagg Remove support for upgrading extensions from "unpackaged" state. 6 years ago
intarray Remove support for upgrading extensions from "unpackaged" state. 6 years ago
isn Remove support for upgrading extensions from "unpackaged" state. 6 years ago
jsonb_plperl Mark some contrib modules as "trusted". 6 years ago
jsonb_plpython In jsonb_plpython.c, suppress warning message from gcc 10. 6 years ago
lo Remove support for upgrading extensions from "unpackaged" state. 6 years ago
ltree Remove support for upgrading extensions from "unpackaged" state. 6 years ago
ltree_plpython Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
oid2name Add PostgreSQL home page to --help output 6 years ago
pageinspect Teach pageinspect about nbtree deduplication. 6 years ago
passwordcheck Update copyrights for 2020 6 years ago
pg_buffercache Remove support for upgrading extensions from "unpackaged" state. 6 years ago
pg_freespacemap Remove support for upgrading extensions from "unpackaged" state. 6 years ago
pg_prewarm Remove excess parens in ereport() calls 6 years ago
pg_standby Add PostgreSQL home page to --help output 6 years ago
pg_stat_statements Move src/backend/utils/hash/hashfn.c to src/common 6 years ago
pg_trgm Remove support for upgrading extensions from "unpackaged" state. 6 years ago
pg_visibility Update copyrights for 2020 6 years ago
pgcrypto Remove support for upgrading extensions from "unpackaged" state. 6 years ago
pgrowlocks Remove support for upgrading extensions from "unpackaged" state. 6 years ago
pgstattuple Remove support for upgrading extensions from "unpackaged" state. 6 years ago
postgres_fdw Fix compile failure. 6 years ago
seg Remove support for upgrading extensions from "unpackaged" state. 6 years ago
sepgsql Move src/backend/utils/hash/hashfn.c to src/common 6 years ago
spi Remove support for upgrading extensions from "unpackaged" state. 6 years ago
sslinfo Remove support for upgrading extensions from "unpackaged" state. 6 years ago
start-scripts
tablefunc Remove support for upgrading extensions from "unpackaged" state. 6 years ago
tcn Mark some contrib modules as "trusted". 6 years ago
test_decoding Stop demanding that top xact must be seen before subxact in decoding. 6 years ago
tsm_system_rows Mark some contrib modules as "trusted". 6 years ago
tsm_system_time Mark some contrib modules as "trusted". 6 years ago
unaccent Remove support for upgrading extensions from "unpackaged" state. 6 years ago
uuid-ossp Remove support for upgrading extensions from "unpackaged" state. 6 years ago
vacuumlo Add PostgreSQL home page to --help output 6 years ago
xml2 Remove support for upgrading extensions from "unpackaged" state. 6 years ago
Makefile
README
contrib-global.mk

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.