postgresql/contrib
2018-01-04 16:00:21 -05:00
..
adminpack Update copyright for 2018 2018-01-02 23:30:12 -05:00
amcheck Update copyright for 2018 2018-01-02 23:30:12 -05:00
auth_delay Update copyright for 2018 2018-01-02 23:30:12 -05:00
auto_explain Update copyright for 2018 2018-01-02 23:30:12 -05:00
bloom Update copyright for 2018 2018-01-02 23:30:12 -05:00
btree_gin
btree_gist Consistently use PG_INT(16|32|64)_(MIN|MAX). 2017-12-12 18:19:13 -08:00
citext
cube Support index-only scans in contrib/cube and contrib/seg GiST indexes. 2017-11-20 20:25:18 -05:00
dblink Update copyright for 2018 2018-01-02 23:30:12 -05:00
dict_int Update copyright for 2018 2018-01-02 23:30:12 -05:00
dict_xsyn Update copyright for 2018 2018-01-02 23:30:12 -05:00
earthdistance
file_fdw Update copyright for 2018 2018-01-02 23:30:12 -05:00
fuzzystrmatch Update copyright for 2018 2018-01-02 23:30:12 -05:00
hstore Avoid formally-undefined use of memcpy() in hstoreUniquePairs(). 2017-11-25 14:42:10 -05:00
hstore_plperl
hstore_plpython Consistently catch errors from Python _New() functions 2017-11-18 13:39:53 -05:00
intagg
intarray Update copyright for 2018 2018-01-02 23:30:12 -05:00
isn Update copyright for 2018 2018-01-02 23:30:12 -05:00
lo
ltree
ltree_plpython Consistently catch errors from Python _New() functions 2017-11-18 13:39:53 -05:00
oid2name
pageinspect Fix new test case to not be endian-dependent. 2018-01-04 16:00:21 -05:00
passwordcheck Update copyright for 2018 2018-01-02 23:30:12 -05:00
pg_buffercache
pg_freespacemap
pg_prewarm Update copyright for 2018 2018-01-02 23:30:12 -05:00
pg_standby
pg_stat_statements Update copyright for 2018 2018-01-02 23:30:12 -05:00
pg_trgm Update copyright for 2018 2018-01-02 23:30:12 -05:00
pg_visibility Update copyright for 2018 2018-01-02 23:30:12 -05:00
pgcrypto
pgrowlocks
pgstattuple Update copyright for 2018 2018-01-02 23:30:12 -05:00
postgres_fdw Update copyright for 2018 2018-01-02 23:30:12 -05:00
seg Support index-only scans in contrib/cube and contrib/seg GiST indexes. 2017-11-20 20:25:18 -05:00
sepgsql Update copyright for 2018 2018-01-02 23:30:12 -05:00
spi
sslinfo
start-scripts Remove contrib/start-scripts/osx/. 2017-11-17 12:53:20 -05:00
tablefunc Update copyright for 2018 2018-01-02 23:30:12 -05:00
tcn Update copyright for 2018 2018-01-02 23:30:12 -05:00
test_decoding Update copyright for 2018 2018-01-02 23:30:12 -05:00
tsm_system_rows Update copyright for 2018 2018-01-02 23:30:12 -05:00
tsm_system_time Update copyright for 2018 2018-01-02 23:30:12 -05:00
unaccent Update copyright for 2018 2018-01-02 23:30:12 -05:00
uuid-ossp Update copyright for 2018 2018-01-02 23:30:12 -05:00
vacuumlo Update copyright for 2018 2018-01-02 23:30:12 -05:00
xml2
contrib-global.mk
Makefile
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.