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
Noah Misch c0e8fb6148 contrib/test_decoding/Makefile sets MODULES, so omit OBJS. 12 years ago
..
adminpack Create function prototype as part of PG_FUNCTION_INFO_V1 macro 12 years ago
auth_delay Limit values of archive_timeout, post_auth_delay, auth_delay.milliseconds. 13 years ago
auto_explain pgindent run for 9.4 12 years ago
btree_gin Create function prototype as part of PG_FUNCTION_INFO_V1 macro 12 years ago
btree_gist Suppress some more valgrind whining about btree_gist. 12 years ago
chkpass Create function prototype as part of PG_FUNCTION_INFO_V1 macro 12 years ago
citext Create function prototype as part of PG_FUNCTION_INFO_V1 macro 12 years ago
cube Revert "Fix bogus %name-prefix option syntax in all our Bison files." 12 years ago
dblink Clean up data conversion short-lived memory context. 12 years ago
dict_int Adjust blank lines around PG_MODULE_MAGIC defines, for consistency 12 years ago
dict_xsyn Create function prototype as part of PG_FUNCTION_INFO_V1 macro 12 years ago
dummy_seclabel Update copyright for 2014 12 years ago
earthdistance Adjust blank lines around PG_MODULE_MAGIC defines, for consistency 12 years ago
file_fdw pgindent run for 9.4 12 years ago
fuzzystrmatch pgindent run for 9.4 12 years ago
hstore Avoid some pnstrdup()s when constructing jsonb 12 years ago
intagg Throw a useful error message if an extension script file is fed to psql. 14 years ago
intarray Adjust blank lines around PG_MODULE_MAGIC defines, for consistency 12 years ago
isn Fix calculation of ISMN check digit. 12 years ago
lo Adjust blank lines around PG_MODULE_MAGIC defines, for consistency 12 years ago
ltree pgindent run for 9.4 12 years ago
oid2name pgindent run for 9.4 12 years ago
pageinspect pgindent run for 9.4 12 years ago
passwordcheck Adjust blank lines around PG_MODULE_MAGIC defines, for consistency 12 years ago
pg_archivecleanup pgindent run for 9.4 12 years ago
pg_buffercache Adjust blank lines around PG_MODULE_MAGIC defines, for consistency 12 years ago
pg_freespacemap Adjust blank lines around PG_MODULE_MAGIC defines, for consistency 12 years ago
pg_prewarm pgindent run for 9.4 12 years ago
pg_standby Remove MinGW readdir/errno bug workaround fixed on 2003-10-10 12 years ago
pg_stat_statements Adjust blank lines around PG_MODULE_MAGIC defines, for consistency 12 years ago
pg_test_fsync pgindent run for 9.4 12 years ago
pg_test_timing Remove undocumented -h (help) option 13 years ago
pg_trgm Adjust blank lines around PG_MODULE_MAGIC defines, for consistency 12 years ago
pg_upgrade pg_upgrade: allow upgrades for new-only TOAST tables 12 years ago
pg_upgrade_support Create function prototype as part of PG_FUNCTION_INFO_V1 macro 12 years ago
pg_xlogdump Change the signature of rm_desc so that it's passed a XLogRecord. 12 years ago
pgbench Allow total number of transactions in pgbench to exceed INT_MAX. 12 years ago
pgcrypto pgindent run for 9.4 12 years ago
pgrowlocks Adjust blank lines around PG_MODULE_MAGIC defines, for consistency 12 years ago
pgstattuple Adjust blank lines around PG_MODULE_MAGIC defines, for consistency 12 years ago
postgres_fdw Remove incorrect comment from postgres_fdw.c. 12 years ago
seg Revert "Fix bogus %name-prefix option syntax in all our Bison files." 12 years ago
sepgsql pgindent run for 9.4 12 years ago
spi pgindent run for 9.4 12 years ago
sslinfo Adjust blank lines around PG_MODULE_MAGIC defines, for consistency 12 years ago
start-scripts Improve handling of OOM score adjustment in sample Linux start script. 12 years ago
tablefunc Update copyright for 2014 12 years ago
tcn Adjust blank lines around PG_MODULE_MAGIC defines, for consistency 12 years ago
test_decoding contrib/test_decoding/Makefile sets MODULES, so omit OBJS. 12 years ago
test_parser Adjust blank lines around PG_MODULE_MAGIC defines, for consistency 12 years ago
test_shm_mq Adjust blank lines around PG_MODULE_MAGIC defines, for consistency 12 years ago
tsearch2 Create function prototype as part of PG_FUNCTION_INFO_V1 macro 12 years ago
unaccent Fix inadequately-sized output buffer in contrib/unaccent. 12 years ago
uuid-ossp Adjust blank lines around PG_MODULE_MAGIC defines, for consistency 12 years ago
vacuumlo Centralize getopt-related declarations in a new header file pg_getopt.h. 12 years ago
worker_spi worker_spi: Initialize bgw_notify_pid in all cases. 12 years ago
xml2 Adjust blank lines around PG_MODULE_MAGIC defines, for consistency 12 years ago
Makefile Support BSD and e2fsprogs UUID libraries alongside OSSP UUID library. 12 years ago
README Rename 'gmake' to 'make' in docs and recommended commands 12 years ago
contrib-global.mk Remove cvs keywords from all files. 15 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.