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
Michael Paquier 11f063b0a9 Remove some dead code in contrib/adminpack/ 6 years ago
..
adminpack Remove some dead code in contrib/adminpack/ 6 years ago
amcheck Update copyrights for 2020 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 Mark some contrib modules as "trusted". 6 years ago
btree_gist Mark some contrib modules as "trusted". 6 years ago
citext Mark some contrib modules as "trusted". 6 years ago
cube Mark some contrib modules as "trusted". 6 years ago
dblink Clean up newlines following left parentheses 6 years ago
dict_int Mark some contrib modules as "trusted". 6 years ago
dict_xsyn Update copyrights for 2020 6 years ago
earthdistance Mark some contrib modules as "trusted". 6 years ago
file_fdw Update copyrights for 2020 6 years ago
fuzzystrmatch Mark some contrib modules as "trusted". 6 years ago
hstore Mark some contrib modules as "trusted". 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 Schema-qualify some references to regprocedure. 9 years ago
intarray Mark some contrib modules as "trusted". 6 years ago
isn Mark some contrib modules as "trusted". 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 Mark some contrib modules as "trusted". 6 years ago
ltree Mark some contrib modules as "trusted". 6 years ago
ltree_plpython Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
oid2name Clean up newlines following left parentheses 6 years ago
pageinspect Clean up newlines following left parentheses 6 years ago
passwordcheck Update copyrights for 2020 6 years ago
pg_buffercache Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
pg_freespacemap Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
pg_prewarm Remove excess parens in ereport() calls 6 years ago
pg_standby Remove useless "return;" lines 6 years ago
pg_stat_statements Use pg_pwrite() in more places. 6 years ago
pg_trgm Mark some contrib modules as "trusted". 6 years ago
pg_visibility Update copyrights for 2020 6 years ago
pgcrypto Mark some contrib modules as "trusted". 6 years ago
pgrowlocks Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
pgstattuple Remove excess parens in ereport() calls 6 years ago
postgres_fdw Add connection parameters to control SSL protocol min/max in libpq 6 years ago
seg Mark some contrib modules as "trusted". 6 years ago
sepgsql Update copyrights for 2020 6 years ago
spi Remove dependency to system calls for memory allocation in refint 6 years ago
sslinfo Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
start-scripts Remove contrib/start-scripts/osx/. 8 years ago
tablefunc Mark some contrib modules as "trusted". 6 years ago
tcn Mark some contrib modules as "trusted". 6 years ago
test_decoding Clean up newlines following left parentheses 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 Mark some contrib modules as "trusted". 6 years ago
uuid-ossp Mark some contrib modules as "trusted". 6 years ago
vacuumlo Update copyrights for 2020 6 years ago
xml2 Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
Makefile Transforms for jsonb to PL/Perl 8 years 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

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.