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 93f94e356d Adjust timing units in pg_stat_statements. 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 auto-explain JSON output to be valid JSON. 14 years ago
btree_gin Throw a useful error message if an extension script file is fed to psql. 14 years ago
btree_gist Throw a useful error message if an extension script file is fed to psql. 14 years ago
chkpass Throw a useful error message if an extension script file is fed to psql. 14 years ago
citext Fix citext upgrade script to update derived copies of pg_type.typcollation. 14 years ago
cube Clean up whitespace and indentation in parser and scanner files 14 years ago
dblink Another typographical correction. 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 Revise parameterized-path mechanism to fix assorted issues. 13 years ago
fuzzystrmatch Lots of doc corrections. 13 years ago
hstore Lots of doc corrections. 13 years ago
intagg Throw a useful error message if an extension script file is fed to psql. 14 years ago
intarray Add const qualifiers where they are accidentally cast away 14 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 Add const qualifiers where they are accidentally cast away 14 years ago
oid2name Use consistent spacing for PGAPPICON Makefile option. 15 years ago
pageinspect Update copyright notices for year 2012. 14 years ago
passwordcheck Update copyright notices for year 2012. 14 years ago
pg_archivecleanup Allow pg_archivecleanup to strip optional file extensions. 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 Message style improvements 14 years ago
pg_stat_statements Adjust timing units in pg_stat_statements. 13 years ago
pg_test_fsync Fix pg_test_fsync Win32 problems reported by the build farm; add 14 years ago
pg_test_timing pg_test_timing: Lame hack to work around compiler warning. 13 years ago
pg_trgm Throw a useful error message if an extension script file is fed to psql. 14 years ago
pg_upgrade Lots of doc corrections. 13 years ago
pg_upgrade_support Update copyright notices for year 2012. 14 years ago
pgbench Update copyright notices for year 2012. 14 years ago
pgcrypto Lots of doc corrections. 13 years ago
pgrowlocks Throw a useful error message if an extension script file is fed to psql. 14 years ago
pgstattuple pgstattuple: Use a BufferAccessStrategy object to avoid cache-trashing. 13 years ago
seg Clean up whitespace and indentation in parser and scanner files 14 years ago
sepgsql Lots of doc corrections. 13 years ago
spi Throw a useful error message if an extension script file is fed to psql. 14 years ago
sslinfo Lots of doc corrections. 13 years ago
start-scripts Fix overly-aggressive and inconsistent quoting in OS X start script. 14 years ago
tablefunc Update copyright notices for year 2012. 14 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 13 years ago
uuid-ossp Update copyright notices for year 2012. 14 years ago
vacuumlo Improve the -l (limit) option recently added to contrib/vacuumlo. 13 years ago
xml2 Throw a useful error message if an extension script file is fed to psql. 14 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.