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
Tom Lane 9a65fb3507 Allow total number of transactions in pgbench to exceed INT_MAX. 11 years ago
..
adminpack Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 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 11 years ago
btree_gin Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
btree_gist Suppress some more valgrind whining about btree_gist. 11 years ago
chkpass Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
citext Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
cube pgindent run for 9.4 11 years ago
dblink pgindent run for 9.4 11 years ago
dict_int Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
dict_xsyn Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
dummy_seclabel Update copyright for 2014 12 years ago
earthdistance pgindent run for 9.4 11 years ago
file_fdw pgindent run for 9.4 11 years ago
fuzzystrmatch pgindent run for 9.4 11 years ago
hstore Avoid some pnstrdup()s when constructing jsonb 11 years ago
intagg Throw a useful error message if an extension script file is fed to psql. 14 years ago
intarray pgindent run for 9.4 11 years ago
isn Fix calculation of ISMN check digit. 12 years ago
lo Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
ltree pgindent run for 9.4 11 years ago
oid2name pgindent run for 9.4 11 years ago
pageinspect pgindent run for 9.4 11 years ago
passwordcheck Update copyright for 2014 12 years ago
pg_archivecleanup pgindent run for 9.4 11 years ago
pg_buffercache Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
pg_freespacemap Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
pg_prewarm pgindent run for 9.4 11 years ago
pg_standby Remove MinGW readdir/errno bug workaround fixed on 2003-10-10 11 years ago
pg_stat_statements pgindent run for 9.4 11 years ago
pg_test_fsync pgindent run for 9.4 11 years ago
pg_test_timing Remove undocumented -h (help) option 12 years ago
pg_trgm pgindent run for 9.4 11 years ago
pg_upgrade Fix whitespace 11 years ago
pg_upgrade_support Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
pg_xlogdump pgindent run for 9.4 11 years ago
pgbench Allow total number of transactions in pgbench to exceed INT_MAX. 11 years ago
pgcrypto pgindent run for 9.4 11 years ago
pgrowlocks Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
pgstattuple pgindent run for 9.4 11 years ago
postgres_fdw pgindent run for 9.4 11 years ago
seg Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
sepgsql pgindent run for 9.4 11 years ago
spi pgindent run for 9.4 11 years ago
sslinfo pgindent run for 9.4 11 years ago
start-scripts Remove dead URL mention in OSX startup script 12 years ago
tablefunc Update copyright for 2014 12 years ago
tcn pgindent run for 9.4 11 years ago
test_decoding Add test case for logical decoding of prepared transactions. 11 years ago
test_parser Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
test_shm_mq pgindent run for 9.4 11 years ago
tsearch2 Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
unaccent Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
uuid-ossp Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
vacuumlo Centralize getopt-related declarations in a new header file pg_getopt.h. 12 years ago
worker_spi pgindent run for 9.4 11 years ago
xml2 pgindent run for 9.4 11 years ago
Makefile Introduce logical decoding. 11 years ago
README Rename 'gmake' to 'make' in docs and recommended commands 12 years ago
contrib-global.mk

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.