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
Andres Freund 2a96909a4a tableam: Support for an index build's initial table scan(s). 7 years ago
..
adminpack
amcheck tableam: Support for an index build's initial table scan(s). 7 years ago
auth_delay
auto_explain
bloom tableam: Support for an index build's initial table scan(s). 7 years ago
btree_gin
btree_gist
citext Move hash_any prototype from access/hash.h to utils/hashutils.h 7 years ago
cube
dblink Initialize structure at declaration 7 years ago
dict_int
dict_xsyn
earthdistance
file_fdw
fuzzystrmatch
hstore Move hash_any prototype from access/hash.h to utils/hashutils.h 7 years ago
hstore_plperl
hstore_plpython Fix volatile vs. pointer confusion 7 years ago
intagg
intarray
isn
jsonb_plperl
jsonb_plpython Fix volatile vs. pointer confusion 7 years ago
lo
ltree
ltree_plpython
oid2name
pageinspect Make heap TID a tiebreaker nbtree index column. 7 years ago
passwordcheck
pg_buffercache
pg_freespacemap
pg_prewarm Don't auto-restart per-database autoprewarm workers. 7 years ago
pg_standby
pg_stat_statements Move hash_any prototype from access/hash.h to utils/hashutils.h 7 years ago
pg_trgm
pg_visibility
pgcrypto Suppress another case of MSVC warning 4146. 7 years ago
pgrowlocks tableam: Add tuple_{insert, delete, update, lock} and use. 7 years ago
pgstattuple Make heap TID a tiebreaker nbtree index column. 7 years ago
postgres_fdw Get rid of duplicate child RTE for a partitioned table. 7 years ago
seg
sepgsql Move hash_any prototype from access/hash.h to utils/hashutils.h 7 years ago
spi
sslinfo
start-scripts
tablefunc Switch some palloc/memset calls to palloc0 7 years ago
tcn
test_decoding
tsm_system_rows tableam: Add and use scan APIs. 7 years ago
tsm_system_time tableam: Add and use scan APIs. 7 years ago
unaccent
uuid-ossp
vacuumlo Avoid double-free in vacuumlo error path. 7 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.