Trim ORDER BY/DISTINCT aggregate pathkeys in gather_grouping_paths
authorDavid Rowley <[email protected]>
Thu, 14 Mar 2024 22:54:36 +0000 (11:54 +1300)
committerDavid Rowley <[email protected]>
Thu, 14 Mar 2024 22:54:36 +0000 (11:54 +1300)
commit4169850f0b6fc98a5f28d2b0ca4c3a4c1ecf4553
tree31f98e96b56888e8c09dfed9f139de94b4ef7add
parent4665cebc8a01dabd54b000bcc107a3468be3a81c
Trim ORDER BY/DISTINCT aggregate pathkeys in gather_grouping_paths

Similar to d8a295389, trim off any PathKeys which are for ORDER BY /
DISTINCT aggregate functions from the PathKey List for the Gather Merge
paths created by gather_grouping_paths().  These additional PathKeys are
not valid to use after grouping has taken place as these PathKeys belong
to columns which are inputs to an aggregate function and, therefore are
unavailable after aggregation.

Reported-by: Alexander Lakhin
Discussion: https://postgr.es/m/cf63174c-8c89-3953-cb49-48f41f74941a@gmail.com
Backpatch-through: 16, where 1349d2790 was added
src/backend/optimizer/plan/planner.c