pgsql: Fix planner's handling of outer PlaceHolderVars within subquerie

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Fix planner's handling of outer PlaceHolderVars within subquerie
Дата
Msg-id E1SBXUE-0000UN-HJ@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix planner's handling of outer PlaceHolderVars within subqueries.

For some reason, in the original coding of the PlaceHolderVar mechanism
I had supposed that PlaceHolderVars couldn't propagate into subqueries.
That is of course entirely possible.  When it happens, we need to treat
an outer-level PlaceHolderVar much like an outer Var or Aggref, that is
SS_replace_correlation_vars() needs to replace the PlaceHolderVar with
a Param, and then when building the finished SubPlan we have to provide
the PlaceHolderVar expression as an actual parameter for the SubPlan.
The handling of the contained expression is a bit delicate but it can be
treated exactly like an Aggref's expression.

In addition to the missing logic in subselect.c, prepjointree.c was failing
to search subqueries for PlaceHolderVars that need their relids adjusted
during subquery pullup.  It looks like everyplace else that touches
PlaceHolderVars got it right, though.

Per report from Mark Murawski.  In 9.1 and HEAD, queries affected by this
oversight would fail with "ERROR: Upper-level PlaceHolderVar found where
not expected".  But in 9.0 and 8.4, you'd silently get possibly-wrong
answers, since the value transmitted into the subquery wouldn't go to null
when it should.

Branch
------
REL9_0_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/29e0b4cb772c0089007f795655136e1dd3d48f93

Modified Files
--------------
src/backend/optimizer/plan/subselect.c    |  123 +++++++++++++++++++++++------
src/backend/optimizer/prep/prepjointree.c |   19 ++++-
src/include/nodes/relation.h              |   13 ++-
src/test/regress/expected/join.out        |   47 +++++++++++
src/test/regress/sql/join.sql             |   21 +++++
5 files changed, 191 insertions(+), 32 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Fix planner's handling of outer PlaceHolderVars within subquerie
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Replace empty locale name with implied value in CREATE DATABASE