postgresql/contrib
Robert Haas 871ec0e336 pageinspect: More type-sanity surgery on the new hash index code.
Uniformly expose unsigned quantities using the next-wider signed
integer type (since we have no unsigned types at the SQL level).
At the SQL level, this results a change to report itemoffset as
int4 rather than int2.  Also at the SQL level, report one value
that is an OID as type oid.  Under the hood, uniformly use macros
that match the SQL output type as to both width and signedness.
2017-02-03 16:28:13 -05:00
..
adminpack
auth_delay
auto_explain
bloom Extend index AM API for parallel index scans. 2017-01-24 16:42:58 -05:00
btree_gin
btree_gist
chkpass
citext Move some things from builtins.h to new header files 2017-01-20 20:29:53 -05:00
cube
dblink Move some things from builtins.h to new header files 2017-01-20 20:29:53 -05:00
dict_int
dict_xsyn
earthdistance
file_fdw
fuzzystrmatch Move some things from builtins.h to new header files 2017-01-20 20:29:53 -05:00
hstore
hstore_plperl Code review for avoidance of direct cross-module links. 2017-02-02 11:21:16 -05:00
hstore_plpython Code review for avoidance of direct cross-module links. 2017-02-02 11:21:16 -05:00
intagg
intarray
isn
lo
ltree
ltree_plpython Code review for avoidance of direct cross-module links. 2017-02-02 11:21:16 -05:00
oid2name
pageinspect pageinspect: More type-sanity surgery on the new hash index code. 2017-02-03 16:28:13 -05:00
passwordcheck Replace isMD5() with a more future-proof way to check if pw is encrypted. 2017-02-01 13:11:37 +02:00
pg_buffercache
pg_freespacemap
pg_prewarm
pg_standby
pg_stat_statements Use the new castNode() macro in a number of places. 2017-01-26 16:47:03 -08:00
pg_trgm
pg_visibility
pgcrypto
pgrowlocks Move some things from builtins.h to new header files 2017-01-20 20:29:53 -05:00
pgstattuple pgstattuple: Add pgstathashindex. 2017-02-03 14:37:16 -05:00
postgres_fdw Fix typo in comment. 2017-01-27 17:22:40 -05:00
seg
sepgsql
spi
sslinfo
start-scripts
tablefunc
tcn
test_decoding
tsearch2 Move some things from builtins.h to new header files 2017-01-20 20:29:53 -05:00
tsm_system_rows
tsm_system_time
unaccent Move some things from builtins.h to new header files 2017-01-20 20:29:53 -05:00
uuid-ossp
vacuumlo
xml2
contrib-global.mk
Makefile
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.