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 dd16f9480a Remove unreachable code 13 years ago
..
adminpack Update copyright notices for year 2012. 14 years ago
auth_delay pgindent run before PG 9.1 beta 1. 15 years ago
auto_explain Run pgindent on 9.2 source tree in preparation for first 9.3 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 Reduce messages about implicit indexes and sequences to DEBUG1. 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 Skip text->binary conversion of unnecessary columns in contrib/file_fdw. 13 years ago
fuzzystrmatch Even more duplicate word removal, in the spirit of the season 14 years ago
hstore Remove unreachable code 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 Remove unreachable code 13 years ago
oid2name Make oid2name, pgbench, and vacuumlo set fallback_application_name. 13 years ago
pageinspect Replace XLogRecPtr struct with a 64-bit integer. 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 Throw a useful error message if an extension script file is fed to psql. 14 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 Run pgindent on 9.2 source tree in preparation for first 9.3 13 years ago
pg_test_fsync Run pgindent on 9.2 source tree in preparation for first 9.3 13 years ago
pg_test_timing Run pgindent on 9.2 source tree in preparation for first 9.3 13 years ago
pg_trgm Replace int2/int4 in C code with int16/int32 13 years ago
pg_upgrade Update pg_upgrade comments for recent configpath fix. 13 years ago
pg_upgrade_support Update copyright notices for year 2012. 14 years ago
pgbench Make oid2name, pgbench, and vacuumlo set fallback_application_name. 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 Reduce messages about implicit indexes and sequences to DEBUG1. 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. 14 years ago
start-scripts Support Linux's oom_score_adj API as well as the older oom_adj API. 13 years ago
tablefunc Reduce messages about implicit indexes and sequences to DEBUG1. 13 years ago
tcn Triggered change notifications. 14 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 14 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 Run pgindent on 9.2 source tree in preparation for first 9.3 13 years ago
Makefile pg_test_timing utility, to measure clock monotonicity and timing cost. 14 years ago
README Update contrib/README 14 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.