pgsql: Don't adjust ressortgroupref in generate_setop_child_grouplist()

From: David Rowley <drowley(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Don't adjust ressortgroupref in generate_setop_child_grouplist()
Date: 2024-04-03 02:39:47
Message-ID: E1rrqXT-000DyO-06@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Don't adjust ressortgroupref in generate_setop_child_grouplist()

This is already done inside assignSortGroupRef(), therefore is
redundant.

Oversight from 66c0185a3.

Reported-by: Tom Lane
Discussion: https://postgr.es/m/3703023.1711654574@sss.pgh.pa.us

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/7487044d6ccf183e53d2633024595779922dbee2

Modified Files
--------------
src/backend/optimizer/plan/planner.c | 1 -
1 file changed, 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Masahiko Sawada 2024-04-03 02:41:12 pgsql: Improve eviction algorithm in ReorderBuffer using max-heap for m
Previous Message Masahiko Sawada 2024-04-03 01:44:39 pgsql: Add functions to binaryheap for efficient key removal and update