postgresql/contrib
Robert Haas 4bf371cf2a Fix typo in comment.
Etsuro Fujita
2017-01-27 17:22:40 -05:00
..
adminpack
auth_delay
auto_explain
bloom Extend index AM API for parallel index scans. 2017-01-24 16:42:58 -05:00
btree_gin
btree_gist Generate fmgr prototypes automatically 2017-01-17 14:06:07 -05:00
chkpass
citext Move some things from builtins.h to new header files 2017-01-20 20:29:53 -05:00
cube
dblink Move some things from builtins.h to new header files 2017-01-20 20:29:53 -05:00
dict_int
dict_xsyn
earthdistance
file_fdw
fuzzystrmatch Move some things from builtins.h to new header files 2017-01-20 20:29:53 -05:00
hstore
hstore_plperl Make messages mentioning type names more uniform 2017-01-18 16:08:20 -03:00
hstore_plpython
intagg
intarray Generate fmgr prototypes automatically 2017-01-17 14:06:07 -05:00
isn
lo Generate fmgr prototypes automatically 2017-01-17 14:06:07 -05:00
ltree
ltree_plpython
oid2name
pageinspect Move some things from builtins.h to new header files 2017-01-20 20:29:53 -05:00
passwordcheck
pg_buffercache
pg_freespacemap
pg_prewarm
pg_standby
pg_stat_statements Use the new castNode() macro in a number of places. 2017-01-26 16:47:03 -08:00
pg_trgm
pg_visibility
pgcrypto
pgrowlocks Move some things from builtins.h to new header files 2017-01-20 20:29:53 -05:00
pgstattuple Move some things from builtins.h to new header files 2017-01-20 20:29:53 -05:00
postgres_fdw Fix typo in comment. 2017-01-27 17:22:40 -05:00
seg
sepgsql
spi Generate fmgr prototypes automatically 2017-01-17 14:06:07 -05:00
sslinfo
start-scripts
tablefunc
tcn
test_decoding
tsearch2 Move some things from builtins.h to new header files 2017-01-20 20:29:53 -05:00
tsm_system_rows
tsm_system_time
unaccent Move some things from builtins.h to new header files 2017-01-20 20:29:53 -05:00
uuid-ossp
vacuumlo
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.