pgsql: Fix index-only scan plans when not all index columns can be retu - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Fix index-only scan plans when not all index columns can be retu
Date
Msg-id E1n3lg2-0003lI-UU@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix index-only scan plans when not all index columns can be returned.

If an index has both returnable and non-returnable columns, and one of
the non-returnable columns is an expression using a Var that is in a
returnable column, then a query returning that expression could result
in an index-only scan plan that attempts to read the non-returnable
column, instead of recomputing the expression from the returnable
column as intended.

To fix, redefine the "indextlist" list of an IndexOnlyScan plan node
as containing null Consts in place of any non-returnable columns.
This solves the problem by preventing setrefs.c from falsely matching
to such entries.  The executor is happy since it only cares about the
exposed types of the entries, and ruleutils.c doesn't care because a
correct plan won't reference those entries.  I considered some other
ways to prevent setrefs.c from doing the wrong thing, but this way
seems good since (a) it allows a very localized fix, (b) it makes
the indextlist structure more compact in many cases, and (c) the
indextlist is now a more faithful representation of what the index AM
will actually produce, viz. nulls for any non-returnable columns.

This is easier to hit since we introduced included columns, but it's
possible to construct failing examples without that, as per the
added regression test.  Hence, back-patch to all supported branches.

Per bug #17350 from Louis Jachiet.

Discussion: https://postgr.es/m/17350-b5bdcf476e5badbb@postgresql.org

Branch
------
REL_10_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/70a31a0e3445be8113f45309f5f53a0241c3714a

Modified Files
--------------
src/backend/optimizer/plan/createplan.c | 53 +++++++++++++++++++++++++++++++--
src/include/nodes/plannodes.h           |  3 +-
src/test/regress/expected/gist.out      | 28 +++++++++++++++++
src/test/regress/sql/gist.sql           | 11 +++++++
4 files changed, 92 insertions(+), 3 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: pg_dump: avoid unsafe function calls in getPolicies().
Next
From: Magnus Hagander
Date:
Subject: pgsql: Fix typo