-
- Downloads
postgres_fdw: Consider foreign joining and foreign sorting together.
Commit ccd8f979 gave us the ability to request that the remote side sort the data, and, later, commit e4106b25 gave us the ability to request that the remote side perform the join for us rather than doing it locally. But we could not do both things at the same time: a remote SQL query that had an ORDER BY clause would never be a join. This commit adds that capability. Ashutosh Bapat, reviewed by me.
Showing
- contrib/postgres_fdw/expected/postgres_fdw.out 152 additions, 151 deletionscontrib/postgres_fdw/expected/postgres_fdw.out
- contrib/postgres_fdw/postgres_fdw.c 83 additions, 37 deletionscontrib/postgres_fdw/postgres_fdw.c
- contrib/postgres_fdw/sql/postgres_fdw.sql 5 additions, 0 deletionscontrib/postgres_fdw/sql/postgres_fdw.sql
Loading
Please register or sign in to comment