postgresql/contrib
Alvaro Herrera f03a779751 Fix copy-and-pasteo
Harmless, but it's certainly better like this.

Noticed by Andres Freund
2013-02-22 17:04:12 -03:00
..
adminpack
auth_delay
auto_explain
btree_gin
btree_gist Make contrib/btree_gist's GiST penalty function a bit saner. 2013-02-07 19:13:59 -05:00
chkpass
citext
cube Add noreturn attributes to some error reporting functions 2013-02-12 07:13:22 -05:00
dblink
dict_int
dict_xsyn
dummy_seclabel
earthdistance
file_fdw Improve error message wording 2013-02-06 00:19:53 -03:00
fuzzystrmatch
hstore
intagg
intarray
isn
lo
ltree
oid2name Create libpgcommon, and move pg_malloc et al to it 2013-02-12 11:21:05 -03:00
pageinspect Improve concurrency of foreign key locking 2013-01-23 12:04:59 -03:00
passwordcheck
pg_archivecleanup
pg_buffercache
pg_freespacemap
pg_standby
pg_stat_statements
pg_test_fsync
pg_test_timing
pg_trgm Fix contrib/pg_trgm's similarity() function for trigram-free strings. 2013-02-13 14:07:06 -05:00
pg_upgrade pg_upgrade: conditionally create cluster delete script 2013-02-14 10:53:03 -05:00
pg_upgrade_support
pg_xlogdump Fix copy-and-pasteo 2013-02-22 17:04:12 -03:00
pgbench Create libpgcommon, and move pg_malloc et al to it 2013-02-12 11:21:05 -03:00
pgcrypto
pgrowlocks pgrowlocks: fix bogus lock strength output 2013-01-31 19:15:35 -03:00
pgstattuple
postgres_fdw Fix some planning oversights in postgres_fdw. 2013-02-22 10:56:36 -05:00
seg Add noreturn attributes to some error reporting functions 2013-02-12 07:13:22 -05:00
sepgsql
spi
sslinfo
start-scripts
tablefunc
tcn
test_parser
tsearch2
unaccent
uuid-ossp
vacuumlo
worker_spi
xml2
contrib-global.mk
Makefile Add postgres_fdw contrib module. 2013-02-21 05:27:16 -05:00
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.