]> granicus.if.org Git - postgresql/commit
postgres_fdw: Add ORDER BY to some remote SQL queries.
authorRobert Haas <rhaas@postgresql.org>
Tue, 3 Nov 2015 17:46:06 +0000 (12:46 -0500)
committerRobert Haas <rhaas@postgresql.org>
Tue, 3 Nov 2015 18:04:42 +0000 (13:04 -0500)
commitf18c944b6137329ac4a6b2dce5745c5dc21a8578
tree169c729ca366a7c15c86b298b9004d7547f1c222
parentfc0b8935213cda555d2b3af2ed08da28ed120e31
postgres_fdw: Add ORDER BY to some remote SQL queries.

If the join problem's entire ORDER BY clause can be pushed to the
remote server, consider a path that adds this ORDER BY clause.  If
use_remote_estimate is on, we cost this path using an additional
remote EXPLAIN.  If not, we just estimate that the path costs 20%
more, which is intended to be large enough that we won't request a
remote sort when it's not helpful, but small enough that we'll have
the remote side do the sort when in doubt.  In some cases, the remote
sort might actually be free, because the remote query plan might
happen to produce output that is ordered the way we need, but without
remote estimates we have no way of knowing that.

It might also be useful to request sorted output from the remote side
if it enables an efficient merge join, but this patch doesn't attempt
to handle that case.

Ashutosh Bapat with revisions by me.  Also reviewed by Fabrízio de Royes
Mello and Jeevan Chalke.
contrib/postgres_fdw/deparse.c
contrib/postgres_fdw/expected/postgres_fdw.out
contrib/postgres_fdw/postgres_fdw.c
contrib/postgres_fdw/postgres_fdw.h
contrib/postgres_fdw/sql/postgres_fdw.sql