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
Alvaro Herrera 8237f27b50 get_relid_attribute_name is dead, long live get_attname 8 years ago
..
adminpack Update copyright for 2018 8 years ago
amcheck Update copyright for 2018 8 years ago
auth_delay Update copyright for 2018 8 years ago
auto_explain Update copyright for 2018 8 years ago
bloom Support parallel btree index builds. 8 years ago
btree_gin
btree_gist Consistently use PG_INT(16|32|64)_(MIN|MAX). 8 years ago
citext
cube llow negative coordinate for ~> (cube, int) operator 8 years ago
dblink Replace AclObjectKind with ObjectType 8 years ago
dict_int Avoid unnecessary use of pg_strcasecmp for already-downcased identifiers. 8 years ago
dict_xsyn Avoid unnecessary use of pg_strcasecmp for already-downcased identifiers. 8 years ago
earthdistance
file_fdw Allow UPDATE to move rows between partitions. 8 years ago
fuzzystrmatch Update copyright for 2018 8 years ago
hstore
hstore_plperl
hstore_plpython
intagg
intarray Update copyright for 2018 8 years ago
isn Update copyright for 2018 8 years ago
lo
ltree
ltree_plpython
oid2name
pageinspect pageinspect: Fix use of wrong memory context by hash_page_items. 8 years ago
passwordcheck Update copyright for 2018 8 years ago
pg_buffercache
pg_freespacemap
pg_prewarm pg_prewarm: Add missing LWLockRegisterTranche call. 8 years ago
pg_standby
pg_stat_statements Update copyright for 2018 8 years ago
pg_trgm Update copyright for 2018 8 years ago
pg_visibility Update copyright for 2018 8 years ago
pgcrypto pgcrypto's encrypt() supports AES-128, AES-192, and AES-256 8 years ago
pgrowlocks Replace AclObjectKind with ObjectType 8 years ago
pgstattuple Update copyright for 2018 8 years ago
postgres_fdw get_relid_attribute_name is dead, long live get_attname 8 years ago
seg
sepgsql get_relid_attribute_name is dead, long live get_attname 8 years ago
spi Remove dead assignment 8 years ago
sslinfo
start-scripts
tablefunc Update copyright for 2018 8 years ago
tcn Update copyright for 2018 8 years ago
test_decoding Replace AclObjectKind with ObjectType 8 years ago
tsm_system_rows Update copyright for 2018 8 years ago
tsm_system_time Update copyright for 2018 8 years ago
unaccent Avoid unnecessary use of pg_strcasecmp for already-downcased identifiers. 8 years ago
uuid-ossp Update copyright for 2018 8 years ago
vacuumlo Update copyright for 2018 8 years ago
xml2
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.