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
Simon Riggs 82e429794b Add microsecs/op display to pg_test_fsync utility 13 years ago
..
adminpack Update copyright notices for year 2012. 14 years ago
auth_delay pgindent run before PG 9.1 beta 1. 14 years ago
auto_explain Fix assorted compilation failures in contrib 13 years ago
btree_gin Throw a useful error message if an extension script file is fed to psql. 14 years ago
btree_gist Reduce messages about implicit indexes and sequences to DEBUG1. 13 years ago
chkpass Throw a useful error message if an extension script file is fed to psql. 14 years ago
citext Reduce messages about implicit indexes and sequences to DEBUG1. 13 years ago
cube Replace int2/int4 in C code with int16/int32 13 years ago
dblink Split tuple struct defs from htup.h to htup_details.h 13 years ago
dict_int Update copyright notices for year 2012. 14 years ago
dict_xsyn Update copyright notices for year 2012. 14 years ago
dummy_seclabel Update copyright notices for year 2012. 14 years ago
earthdistance Throw a useful error message if an extension script file is fed to psql. 14 years ago
file_fdw Split tuple struct defs from htup.h to htup_details.h 13 years ago
fuzzystrmatch Even more duplicate word removal, in the spirit of the season 13 years ago
hstore Provide some static-assertion functionality on all compilers. 13 years ago
intagg Throw a useful error message if an extension script file is fed to psql. 14 years ago
intarray Remove unreachable code 13 years ago
isn Update copyright notices for year 2012. 14 years ago
lo Throw a useful error message if an extension script file is fed to psql. 14 years ago
ltree Split tuple struct defs from htup.h to htup_details.h 13 years ago
oid2name Work around unportable behavior of malloc(0) and realloc(NULL, 0). 13 years ago
pageinspect Split tuple struct defs from htup.h to htup_details.h 13 years ago
passwordcheck Update copyright notices for year 2012. 14 years ago
pg_archivecleanup Make documentation of --help and --version options more consistent 13 years ago
pg_buffercache Split tuple struct defs from htup.h to htup_details.h 13 years ago
pg_freespacemap Throw a useful error message if an extension script file is fed to psql. 14 years ago
pg_standby Make documentation of --help and --version options more consistent 13 years ago
pg_stat_statements Remove pg_stat_statements--1.0.sql, too. 13 years ago
pg_test_fsync Add microsecs/op display to pg_test_fsync utility 13 years ago
pg_test_timing Adjust pg_test_timing to show shortest test durations first, place 13 years ago
pg_trgm Fix bugs in contrib/pg_trgm's LIKE pattern analysis code. 13 years ago
pg_upgrade In pg_upgrade, use full path name for analyze_new_cluster.sh script. 13 years ago
pg_upgrade_support Update copyright notices for year 2012. 14 years ago
pgbench Add --sampling-rate option to pgbench. 13 years ago
pgcrypto Run pgindent on 9.2 source tree in preparation for first 9.3 13 years ago
pgrowlocks Throw a useful error message if an extension script file is fed to psql. 14 years ago
pgstattuple Reduce messages about implicit indexes and sequences to DEBUG1. 13 years ago
seg Run newly-configured perltidy script on Perl files. 13 years ago
sepgsql sepgsql cleanups. 13 years ago
spi Run pgindent on 9.2 source tree in preparation for first 9.3 13 years ago
sslinfo Lots of doc corrections. 13 years ago
start-scripts Support Linux's oom_score_adj API as well as the older oom_adj API. 13 years ago
tablefunc Split tuple struct defs from htup.h to htup_details.h 13 years ago
tcn Split tuple struct defs from htup.h to htup_details.h 13 years ago
test_parser Fix one-byte buffer overrun in contrib/test_parser. 14 years ago
tsearch2 Update copyright notices for year 2012. 14 years ago
unaccent Fix some typos 13 years ago
uuid-ossp Update copyright notices for year 2012. 14 years ago
vacuumlo Make oid2name, pgbench, and vacuumlo set fallback_application_name. 13 years ago
xml2 Split tuple struct defs from htup.h to htup_details.h 13 years ago
Makefile pg_test_timing utility, to measure clock monotonicity and timing cost. 13 years ago
README Update contrib/README 13 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 "gmake all" and "gmake
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.