postgresql/contrib
Robert Haas 3aa16b117a Allow queries submitted by postgres_fdw to be canceled.
Back-patch of commits f039eaac71 and
1b812afb0e, which arranged (in 9.6+) to
make remote queries interruptible.  It was known at the time that the
same problem existed in the back-branches, but I did not back-patch
for lack of a user complaint.

Michael Paquier and Etsuro Fujita, adjusted for older branches by me.
Per gripe from Suraj Kharage.  This doesn't directly addresss Suraj's
gripe, but since the patch that will do so builds up on top of this
work, it seems best to back-patch this part first.

Discussion: http://postgr.es/m/CAF1DzPU8Kx+fMXEbFoP289xtm3bz3t+ZfxhmKavr98Bh-C0TqQ@mail.gmail.com
2017-05-06 22:17:35 -04:00
..
adminpack Fix pg_file_write() error handling. 2017-03-12 19:36:15 -04:00
auth_delay
auto_explain
btree_gin
btree_gist
chkpass
citext
cube Fix typos in comments. 2017-02-06 11:34:28 +02:00
dblink Fix ancient connection leak in dblink 2017-03-11 13:33:22 -08:00
dict_int
dict_xsyn
dummy_seclabel
earthdistance Fix typos in comments. 2017-02-06 11:34:28 +02:00
file_fdw
fuzzystrmatch
hstore
intagg
intarray
isn Fix typos in comments. 2017-02-06 11:34:28 +02:00
lo
ltree Spelling fixes 2017-03-14 13:45:45 -04:00
oid2name
pageinspect
passwordcheck
pg_archivecleanup
pg_buffercache
pg_freespacemap
pg_standby Back-patch 9.4-era compiler warning fixes into older branches. 2017-02-17 16:58:59 -05:00
pg_stat_statements
pg_test_fsync Avoid depending on non-POSIX behavior of fcntl(2). 2017-04-21 15:55:56 -04:00
pg_test_timing
pg_trgm Further fix pg_trgm's extraction of trigrams from regular expressions. 2017-04-14 14:52:03 -04:00
pg_upgrade
pg_upgrade_support
pg_xlogdump pg_xlogdump: Remove extra newline in error message 2017-03-08 09:59:52 -05:00
pgbench
pgcrypto Support OpenSSL 1.1.0 in 9.3 and 9.2. 2017-04-17 13:52:42 -04:00
pgrowlocks
pgstattuple
postgres_fdw Allow queries submitted by postgres_fdw to be canceled. 2017-05-06 22:17:35 -04:00
seg Fix typos in comments. 2017-02-06 11:34:28 +02:00
sepgsql Silence compiler warning in sepgsql 2017-04-06 14:24:50 -07:00
spi Fix typos in comments. 2017-02-06 11:34:28 +02:00
sslinfo
start-scripts Fix typos in comments. 2017-02-06 11:34:28 +02:00
tablefunc
tcn
test_parser
tsearch2 Fix typos in comments. 2017-02-06 11:34:28 +02:00
unaccent
uuid-ossp
vacuumlo
worker_spi
xml2 Fix typos in comments. 2017-02-06 11:34:28 +02:00
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 "gmake all" and "gmake
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.