Keep the planner from failing on "WHERE false AND something IN (SELECT ...)".
commitc8513e5bf902d55014eccd207bcb63028d754ed1
authortgl <tgl>
Thu, 4 Oct 2007 20:44:47 +0000 (4 20:44 +0000)
committertgl <tgl>
Thu, 4 Oct 2007 20:44:47 +0000 (4 20:44 +0000)
treecd769effcc3f5aeb9a93805e2b7ff7159f596518
parentb065f3479b27c9732576b9e1f0d8730cbcb400f7
Keep the planner from failing on "WHERE false AND something IN (SELECT ...)".
eval_const_expressions simplifies this to just "WHERE false", but we have
already done pull_up_IN_clauses so the IN join will be done, or at least
planned, anyway.  The trouble case comes when the sub-SELECT is itself a join
and we decide to implement the IN by unique-ifying the sub-SELECT outputs:
with no remaining reference to the output Vars in WHERE, we won't have
propagated the Vars up to the upper join point, leading to "variable not found
in subplan target lists" error.  Fix by adding an extra scan of in_info_list
and forcing all Vars mentioned therein to be propagated up to the IN join
point.  Per bug report from Miroslav Sulc.
src/backend/optimizer/plan/initsplan.c
src/backend/optimizer/plan/planmain.c
src/include/optimizer/planmain.h