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
Andrew Dunstan 7317d8d961 Use separate output dirs for test_decoding's two runs. 12 years ago
..
adminpack
auth_delay
auto_explain auto_explain: Add logging of trigger execution 12 years ago
btree_gin
btree_gist
chkpass Prevent potential overruns of fixed-size buffers. 12 years ago
citext Remove dependency on database encoding in citext regression test. 12 years ago
cube
dblink
dict_int
dict_xsyn
dummy_seclabel
earthdistance
file_fdw Provide a FORCE NULL option to COPY in CSV mode. 12 years ago
fuzzystrmatch
hstore Introduce jsonb, a structured format for storing json. 12 years ago
intagg
intarray Predict integer overflow to avoid buffer overruns. 12 years ago
isn
lo
ltree Predict integer overflow to avoid buffer overruns. 12 years ago
oid2name Centralize getopt-related declarations in a new header file pg_getopt.h. 12 years ago
pageinspect pageinspect: Use new pg_lsn datatype. 12 years ago
passwordcheck
pg_archivecleanup Remove MinGW readdir/errno bug workaround fixed on 2003-10-10 12 years ago
pg_buffercache Relax the requirement that all lwlocks be stored in a single array. 12 years ago
pg_freespacemap
pg_prewarm
pg_standby Remove MinGW readdir/errno bug workaround fixed on 2003-10-10 12 years ago
pg_stat_statements Prefer pg_any_to_server/pg_server_to_any over pg_do_encoding_conversion. 12 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
pg_trgm
pg_upgrade Revert "Secure Unix-domain sockets of "make check" temporary clusters." 12 years ago
pg_upgrade_support
pg_xlogdump Use pg_usleep() instead of plain sleep(), to fix Windows build 12 years ago
pgbench pgbench: Fix help message 12 years ago
pgcrypto Fix typos in comments. 12 years ago
pgrowlocks
pgstattuple Compress GIN posting lists, for smaller index size. 12 years ago
postgres_fdw Don't test xmin/xmax columns of a postgres_fdw foreign table. 12 years ago
seg
sepgsql
spi
sslinfo Prefer pg_any_to_server/pg_server_to_any over pg_do_encoding_conversion. 12 years ago
start-scripts
tablefunc
tcn
test_decoding Use separate output dirs for test_decoding's two runs. 12 years ago
test_parser
test_shm_mq test_shm_mq: Improve regression tests. 12 years ago
tsearch2
unaccent
uuid-ossp
vacuumlo Centralize getopt-related declarations in a new header file pg_getopt.h. 12 years ago
worker_spi Fix some more bugs in signal handlers and process shutdown logic. 12 years ago
xml2
Makefile Introduce logical decoding. 12 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.