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
Peter Eisentraut e7128e8dbb Create function prototype as part of PG_FUNCTION_INFO_V1 macro 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 auto_explain: Add logging of trigger execution 11 years ago
btree_gin Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
btree_gist Create function prototype as part of PG_FUNCTION_INFO_V1 macro 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 Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
dblink Update copyright for 2014 12 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 Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
file_fdw Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
fuzzystrmatch Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
hstore Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
intagg Throw a useful error message if an extension script file is fed to psql. 14 years ago
intarray Create function prototype as part of PG_FUNCTION_INFO_V1 macro 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 Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
oid2name Centralize getopt-related declarations in a new header file pg_getopt.h. 12 years ago
pageinspect Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
passwordcheck Update copyright for 2014 12 years ago
pg_archivecleanup Remove MinGW readdir/errno bug workaround fixed on 2003-10-10 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 Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
pg_standby Remove MinGW readdir/errno bug workaround fixed on 2003-10-10 11 years ago
pg_stat_statements Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
pg_test_fsync pg_test_fsync: add C comment about direct I/O and write size failure 12 years ago
pg_test_timing Remove undocumented -h (help) option 12 years ago
pg_trgm Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
pg_upgrade pg_upgrade: throw an error for non-existent tablespace directories 11 years ago
pg_upgrade_support Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
pg_xlogdump Use pg_usleep() instead of plain sleep(), to fix Windows build 11 years ago
pgbench pgbench: Fix help message 11 years ago
pgcrypto Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
pgrowlocks Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
pgstattuple Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
postgres_fdw Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
seg Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
sepgsql Fix typo in comment. 11 years ago
spi Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
sslinfo Create function prototype as part of PG_FUNCTION_INFO_V1 macro 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 Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
test_decoding contrib/test_decoding: fix regression test for psql oid display changes 11 years ago
test_parser Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
test_shm_mq Create function prototype as part of PG_FUNCTION_INFO_V1 macro 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 Create function prototype as part of PG_FUNCTION_INFO_V1 macro 11 years ago
xml2 Create function prototype as part of PG_FUNCTION_INFO_V1 macro 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 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.