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
Alexander Korotkov 4b754d6c16 Avoid full scan of GIN indexes when possible 6 years ago
..
adminpack Update copyrights for 2020 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 Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
btree_gist Make the order of the header file includes consistent. 6 years ago
citext Fix typos in various places 6 years ago
cube Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
dblink Update copyrights for 2020 6 years ago
dict_int Update copyrights for 2020 6 years ago
dict_xsyn Update copyrights for 2020 6 years ago
earthdistance Fix earthdistance test suite function name typo. 7 years ago
file_fdw Update copyrights for 2020 6 years ago
fuzzystrmatch Update copyrights for 2020 6 years ago
hstore Add reusable routine for making arrays unique. 6 years ago
hstore_plperl Split all OBJS style lines in makefiles into one-line-per-entry style. 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 Update copyrights for 2020 6 years ago
isn Update copyrights for 2020 6 years ago
jsonb_plperl Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
jsonb_plpython Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
lo lo: Add test suite 8 years ago
ltree Remove useless "return;" lines 6 years ago
ltree_plpython Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
oid2name Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
pageinspect Update copyrights for 2020 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 Update copyrights for 2020 6 years ago
pg_standby Remove useless "return;" lines 6 years ago
pg_stat_statements Update copyrights for 2020 6 years ago
pg_trgm Avoid full scan of GIN indexes when possible 6 years ago
pg_visibility Update copyrights for 2020 6 years ago
pgcrypto Update copyrights for 2020 6 years ago
pgrowlocks Split all OBJS style lines in makefiles into one-line-per-entry style. 6 years ago
pgstattuple Update copyrights for 2020 6 years ago
postgres_fdw Only superuser can set sslcert/sslkey in postgres_fdw user mappings 6 years ago
seg Remove useless "return;" lines 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 Update copyrights for 2020 6 years ago
tcn Update copyrights for 2020 6 years ago
test_decoding Update copyrights for 2020 6 years ago
tsm_system_rows Update copyrights for 2020 6 years ago
tsm_system_time Update copyrights for 2020 6 years ago
unaccent Add support for automatically updating Unicode derived files 6 years ago
uuid-ossp Update copyrights for 2020 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 7 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 9 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.