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
Heikki Linnakangas fe0a0b5993 Replace PostmasterRandom() with a stronger source, second attempt. 10 years ago
..
adminpack
auth_delay
auto_explain
bloom Remove unnecessary prototypes 10 years ago
btree_gin Test all contrib-created operator classes with amvalidate. 10 years ago
btree_gist Test all contrib-created operator classes with amvalidate. 10 years ago
chkpass
citext Test all contrib-created operator classes with amvalidate. 10 years ago
cube Test all contrib-created operator classes with amvalidate. 10 years ago
dblink Remove unnecessary prototypes 10 years ago
dict_int
dict_xsyn
earthdistance psql: Split up "Modifiers" column in \d and \dD 10 years ago
file_fdw
fuzzystrmatch
hstore Test all contrib-created operator classes with amvalidate. 10 years ago
hstore_plperl Avoid direct cross-module links in hstore_plperl and ltree_plpython, too. 10 years ago
hstore_plpython Fix hstore_plpython for Python 3. 10 years ago
intagg
intarray Test all contrib-created operator classes with amvalidate. 10 years ago
isn Test all contrib-created operator classes with amvalidate. 10 years ago
lo
ltree Test all contrib-created operator classes with amvalidate. 10 years ago
ltree_plpython Avoid direct cross-module links in hstore_plperl and ltree_plpython, too. 10 years ago
oid2name
pageinspect Fix gin_leafpage_items(). 10 years ago
passwordcheck
pg_buffercache
pg_freespacemap
pg_prewarm
pg_standby
pg_stat_statements Provide NO_INSTALLCHECK option for pgxs. 10 years ago
pg_trgm Test all contrib-created operator classes with amvalidate. 10 years ago
pg_visibility Fix bugs in contrib/pg_visibility. 10 years ago
pgcrypto Replace PostmasterRandom() with a stronger source, second attempt. 10 years ago
pgrowlocks
pgstattuple pgstattuple: Don't take heavyweight locks when examining a hash index. 10 years ago
postgres_fdw postgres_fdw: Fix typo in comment. 10 years ago
seg Test all contrib-created operator classes with amvalidate. 10 years ago
sepgsql
spi Replace uses of SPI_modifytuple that intend to allocate in current context. 10 years ago
sslinfo
start-scripts
tablefunc Remove unnecessary prototypes 10 years ago
tcn
test_decoding Make contrib/test_decoding regression tests safe for CZ locale. 10 years ago
tsearch2 Test all contrib-created operator classes with amvalidate. 10 years ago
tsm_system_rows
tsm_system_time
unaccent
uuid-ossp
vacuumlo
xml2 Revert "Delete contrib/xml2's legacy implementation of xml_is_well_formed()." 10 years ago
Makefile
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 "make all" and "make
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.