mirror of
https://github.com/postgres/postgres.git
synced 2025-06-11 20:28:21 +03:00
Commitccd8f97922
gave us the ability to request that the remote side sort the data, and, later, commite4106b2528
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.