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 3c07fbf40b Use pqsignal() in contrib programs rather than calling signal(2) directly. 13 years ago
..
adminpack
auth_delay
auto_explain
btree_gin
btree_gist
chkpass
citext
cube Add noreturn attributes to some error reporting functions 13 years ago
dblink
dict_int
dict_xsyn
dummy_seclabel
earthdistance
file_fdw Support writable foreign tables. 13 years ago
fuzzystrmatch
hstore Minor fixes for hstore_to_json_loose(). 13 years ago
intagg
intarray
isn
lo
ltree
oid2name Add a materialized view relations. 13 years ago
pageinspect
passwordcheck
pg_archivecleanup
pg_buffercache
pg_freespacemap
pg_standby Use pqsignal() in contrib programs rather than calling signal(2) directly. 13 years ago
pg_stat_statements
pg_test_fsync Use pqsignal() in contrib programs rather than calling signal(2) directly. 13 years ago
pg_test_timing
pg_trgm Fix contrib/pg_trgm's similarity() function for trigram-free strings. 13 years ago
pg_upgrade Add a materialized view relations. 13 years ago
pg_upgrade_support
pg_xlogdump Fix typo in "pg_xlogdump --help" and error message. 13 years ago
pgbench Fix inclusions in pgbench.c. 13 years ago
pgcrypto
pgrowlocks
pgstattuple Add a materialized view relations. 13 years ago
postgres_fdw Introduce less-bogus handling of collations in contrib/postgres_fdw. 13 years ago
seg Add noreturn attributes to some error reporting functions 13 years ago
sepgsql
spi
sslinfo
start-scripts
tablefunc
tcn
test_parser
tsearch2
unaccent
uuid-ossp
vacuumlo Add a materialized view relations. 13 years ago
worker_spi
xml2
Makefile contrib/Makefile also needs updated 13 years ago
README
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 "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.