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
Teodor Sigaev f4cd7102b5 Add support of bool, bpchar, name and uuid to btree_gin 8 years ago
..
adminpack Update copyright for 2018 8 years ago
amcheck Skip full index scan during cleanup of B-tree indexes when possible 8 years ago
auth_delay Update copyright for 2018 8 years ago
auto_explain Allow auto_explain.log_min_duration to go up to INT_MAX. 8 years ago
bloom Fix errors in contrib/bloom index build. 8 years ago
btree_gin Add support of bool, bpchar, name and uuid to btree_gin 8 years ago
btree_gist Fix assorted issues in convert_to_scalar(). 8 years ago
citext
cube llow negative coordinate for ~> (cube, int) operator 8 years ago
dblink Prevent accidental linking of system-supplied copies of libpq.so etc. 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 Improve style guideline compliance of assorted error-report messages. 8 years ago
fuzzystrmatch Update copyright for 2018 8 years ago
hstore
hstore_plperl Prevent accidental linking of system-supplied copies of libpq.so etc. 8 years ago
hstore_plpython Prevent accidental linking of system-supplied copies of libpq.so etc. 8 years ago
intagg
intarray Update copyright for 2018 8 years ago
isn Update copyright for 2018 8 years ago
jsonb_plperl Remove less-portable-than-believed test case. 8 years ago
jsonb_plpython Prevent accidental linking of system-supplied copies of libpq.so etc. 8 years ago
lo
ltree
ltree_plpython Prevent accidental linking of system-supplied copies of libpq.so etc. 8 years ago
oid2name Prevent accidental linking of system-supplied copies of libpq.so etc. 8 years ago
pageinspect Fix handling of non-upgraded B-tree metapages 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 Add strict_word_similarity to pg_trgm module 8 years ago
pg_visibility Update copyright for 2018 8 years ago
pgcrypto Fix a boatload of typos in C comments. 8 years ago
pgrowlocks Replace AclObjectKind with ObjectType 8 years ago
pgstattuple Skip full index scan during cleanup of B-tree indexes when possible 8 years ago
postgres_fdw Prevent accidental linking of system-supplied copies of libpq.so etc. 8 years ago
seg
sepgsql Remove stdbool workaround in sepgsql 8 years ago
spi Prevent accidental linking of system-supplied copies of libpq.so etc. 8 years ago
sslinfo
start-scripts
tablefunc Update copyright for 2018 8 years ago
tcn Update copyright for 2018 8 years ago
test_decoding MERGE SQL Command following SQL:2016 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 Prevent accidental linking of system-supplied copies of libpq.so etc. 8 years ago
xml2
Makefile Transforms for jsonb to PL/Perl 8 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 "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.