postgresql/contrib
Etsuro Fujita ffab494a4d postgres_fdw: Perform the (ORDERED, NULL) upperrel operations remotely.
The upper-planner pathification allows FDWs to arrange to push down
different types of upper-stage operations to the remote side.  This
commit teaches postgres_fdw to do it for the (ORDERED, NULL) upperrel,
which is responsible for evaluating the query's ORDER BY ordering.
Since postgres_fdw is already able to evaluate that ordering remotely
for foreign baserels and foreign joinrels (see commit aa09cd242f et al.),
this adds support for that for foreign grouping relations.

Author: Etsuro Fujita
Reviewed-By: Antonin Houska and Jeff Janes
Discussion: https://postgr.es/m/87pnz1aby9.fsf@news-spur.riddles.org.uk
2019-04-02 19:20:30 +09:00
..
adminpack
amcheck Tweak some nbtree-related code comments. 2019-03-29 12:29:05 -07:00
auth_delay
auto_explain
bloom tableam: Support for an index build's initial table scan(s). 2019-03-27 19:59:06 -07:00
btree_gin
btree_gist Change floating-point output format for improved performance. 2019-02-13 15:20:33 +00:00
citext Move hash_any prototype from access/hash.h to utils/hashutils.h 2019-03-11 13:17:50 -03:00
cube Change floating-point output format for improved performance. 2019-02-13 15:20:33 +00:00
dblink Initialize structure at declaration 2019-03-25 09:36:58 +01:00
dict_int
dict_xsyn
earthdistance
file_fdw
fuzzystrmatch
hstore Move hash_any prototype from access/hash.h to utils/hashutils.h 2019-03-11 13:17:50 -03:00
hstore_plperl
hstore_plpython Fix volatile vs. pointer confusion 2019-03-14 08:42:48 +01:00
intagg
intarray Make use of compiler builtins and/or assembly for CLZ, CTZ, POPCNT. 2019-02-15 23:22:33 -05:00
isn
jsonb_plperl
jsonb_plpython Fix volatile vs. pointer confusion 2019-03-14 08:42:48 +01:00
lo
ltree Make use of compiler builtins and/or assembly for CLZ, CTZ, POPCNT. 2019-02-15 23:22:33 -05:00
ltree_plpython
oid2name
pageinspect Only allow heap in a number of contrib modules. 2019-04-01 14:57:21 -07:00
passwordcheck
pg_buffercache
pg_freespacemap
pg_prewarm Don't auto-restart per-database autoprewarm workers. 2019-03-18 15:22:42 -04:00
pg_standby
pg_stat_statements Move hash_any prototype from access/hash.h to utils/hashutils.h 2019-03-11 13:17:50 -03:00
pg_trgm Make use of compiler builtins and/or assembly for CLZ, CTZ, POPCNT. 2019-02-15 23:22:33 -05:00
pg_visibility
pgcrypto Suppress another case of MSVC warning 4146. 2019-02-16 15:28:27 -08:00
pgrowlocks Only allow heap in a number of contrib modules. 2019-04-01 14:57:21 -07:00
pgstattuple Only allow heap in a number of contrib modules. 2019-04-01 14:57:21 -07:00
postgres_fdw postgres_fdw: Perform the (ORDERED, NULL) upperrel operations remotely. 2019-04-02 19:20:30 +09:00
seg Change floating-point output format for improved performance. 2019-02-13 15:20:33 +00:00
sepgsql Move hash_any prototype from access/hash.h to utils/hashutils.h 2019-03-11 13:17:50 -03:00
spi
sslinfo
start-scripts
tablefunc Switch some palloc/memset calls to palloc0 2019-03-27 12:02:50 +09:00
tcn
test_decoding
tsm_system_rows tableam: sample scan. 2019-03-31 18:37:57 -07:00
tsm_system_time tableam: sample scan. 2019-03-31 18:37:57 -07:00
unaccent
uuid-ossp
vacuumlo Avoid double-free in vacuumlo error path. 2019-03-24 15:13:20 -04:00
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.