pgsql: Fix whole-row Var evaluation to cope with resjunk columns (again - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Fix whole-row Var evaluation to cope with resjunk columns (again
Date
Msg-id E1SsGjc-0007yr-N2@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix whole-row Var evaluation to cope with resjunk columns (again).

When a whole-row Var is reading the result of a subquery, we need it to
ignore any "resjunk" columns that the subquery might have evaluated for
GROUP BY or ORDER BY purposes.  We've hacked this area before, in commit
68e40998d058c1f6662800a648ff1e1ce5d99cba, but that fix only covered
whole-row Vars of named composite types, not those of RECORD type; and it
was mighty klugy anyway, since it just assumed without checking that any
extra columns in the result must be resjunk.  A proper fix requires getting
hold of the subquery's targetlist so we can actually see which columns are
resjunk (whereupon we can use a JunkFilter to get rid of them).  So bite
the bullet and add some infrastructure to make that possible.

Per report from Andrew Dunstan and additional testing by Merlin Moncure.
Back-patch to all supported branches.  In 8.3, also back-patch commit
292176a118da6979e5d368a4baf27f26896c99a5, which for some reason I had
not done at the time, but it's a prerequisite for this change.

Branch
------
REL9_0_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/0b71d8e855764894c38b30b17810c45368af6ab1

Modified Files
--------------
src/backend/executor/execQual.c         |  458 +++++++++++++++++++------------
src/backend/executor/execUtils.c        |    4 +-
src/include/nodes/execnodes.h           |   11 +
src/include/nodes/nodes.h               |    1 +
src/test/regress/expected/subselect.out |   25 ++
src/test/regress/sql/subselect.sql      |    9 +
6 files changed, 330 insertions(+), 178 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Fix whole-row Var evaluation to cope with resjunk columns (again
Next
From: Alvaro Herrera
Date:
Subject: pgsql: connoinherit may be true only for CHECK constraints