postgresql/contrib
Robert Haas 86437ddf8c postgres_fdw: Fix cache lookup failure while creating error context.
This is fallout from join pushdown; get_relid_attribute_name can't
handle an attribute number of 0, indicating a whole-row reference,
and shouldn't be called in that case.

Etsuro Fujita, reviewed by Ashutosh Bapat
2016-07-01 11:29:25 -04:00
..
adminpack
auth_delay
auto_explain pgindent run for 9.6 2016-06-09 18:02:36 -04:00
bloom Minor fixes in contrib installation scripts. 2016-06-14 10:47:06 -04:00
btree_gin
btree_gist Handle contrib's GIN/GIST support function signature changes honestly. 2016-06-09 16:44:25 -04:00
chkpass
citext Schema-qualify some references to regprocedure. 2016-06-10 10:41:58 -04:00
cube Update extensions with GIN/GIST support for parallel query. 2016-06-14 13:34:37 -04:00
dblink Fix parallel-safety markings for contrib/dblink. 2016-06-17 23:08:21 -04:00
dict_int
dict_xsyn
earthdistance Update earthdistance extension for parallel query. 2016-06-07 11:26:41 -04:00
file_fdw pgindent run for 9.6 2016-06-09 18:02:36 -04:00
fuzzystrmatch Update fuzzystrmatch extension for parallel query. 2016-06-07 11:26:41 -04:00
hstore Update extensions with GIN/GIST support for parallel query. 2016-06-14 13:34:37 -04:00
hstore_plperl Minor fixes in contrib installation scripts. 2016-06-14 10:47:06 -04:00
hstore_plpython Minor fixes in contrib installation scripts. 2016-06-14 10:47:06 -04:00
intagg Schema-qualify some references to regprocedure. 2016-06-10 10:41:58 -04:00
intarray Update extensions with GIN/GIST support for parallel query. 2016-06-14 13:34:37 -04:00
isn pgindent run for 9.6 2016-06-09 18:02:36 -04:00
lo Update lo extension for parallel query. 2016-06-07 11:26:42 -04:00
ltree Update extensions with GIN/GIST support for parallel query. 2016-06-14 13:34:37 -04:00
ltree_plpython Minor fixes in contrib installation scripts. 2016-06-14 10:47:06 -04:00
oid2name
pageinspect pgindent run for 9.6 2016-06-09 18:02:36 -04:00
passwordcheck
pg_buffercache Update pg_buffercache extension for parallel query. 2016-06-09 17:18:12 -04:00
pg_freespacemap Update pg_freespacemap extension for parallel query. 2016-06-09 17:18:16 -04:00
pg_prewarm Update pg_prewarm extension for parallel query. 2016-06-09 17:18:18 -04:00
pg_standby
pg_stat_statements Update pg_stat_statements extension for parallel query. 2016-06-10 10:42:01 -04:00
pg_trgm pg_trgm's set_limit() function is parallel unsafe, not parallel restricted. 2016-06-20 11:29:54 -04:00
pg_visibility pg_visibility: Add pg_truncate_visibility_map function. 2016-06-17 17:37:30 -04:00
pgcrypto Minor fixes in contrib installation scripts. 2016-06-14 10:47:06 -04:00
pgrowlocks Fix handling of multixacts predating pg_upgrade 2016-06-24 18:29:28 -04:00
pgstattuple Minor fixes in contrib installation scripts. 2016-06-14 10:47:06 -04:00
postgres_fdw postgres_fdw: Fix cache lookup failure while creating error context. 2016-07-01 11:29:25 -04:00
seg Update extensions with GIN/GIST support for parallel query. 2016-06-14 13:34:37 -04:00
sepgsql
spi
sslinfo Update sslinfo extension for parallel query. 2016-06-14 14:52:55 -04:00
start-scripts
tablefunc
tcn Revert CREATE INDEX ... INCLUDING ... 2016-04-08 21:52:13 +03:00
test_decoding pgindent run for 9.6 2016-06-09 18:02:36 -04:00
tsearch2 Update contrib/tsearch2/expected/tsearch2_1.out for phrase FTS. 2016-06-04 00:49:42 -04:00
tsm_system_rows
tsm_system_time
unaccent Update unaccent extension for parallel query. 2016-06-14 14:55:49 -04:00
uuid-ossp Update uuid-ossp extension for parallel query. 2016-06-14 14:56:21 -04:00
vacuumlo
xml2 Update xml2 extension for parallel query. 2016-06-14 15:49:32 -04:00
contrib-global.mk
Makefile Bloom index contrib module 2016-04-01 16:42:24 +03:00
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.