]> granicus.if.org Git - postgresql/commit
Fix misbehavior of CTE-used-in-a-subplan during EPQ rechecks.
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 19 Feb 2018 21:00:18 +0000 (16:00 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 19 Feb 2018 21:00:18 +0000 (16:00 -0500)
commitea6d67cf8e01a1361f7374af9fa70871cc41dc43
tree833669a8e3081a213fdb9afb65b327cd2e42357d
parent35c3dabc806b26c543bf434ea4a08707ba894239
Fix misbehavior of CTE-used-in-a-subplan during EPQ rechecks.

An updating query that reads a CTE within an InitPlan or SubPlan could get
incorrect results if it updates rows that are concurrently being modified.
This is caused by CteScanNext supposing that nothing inside its recursive
ExecProcNode call could change which read pointer is selected in the CTE's
shared tuplestore.  While that's normally true because of scoping
considerations, it can break down if an EPQ plan tree gets built during the
call, because EvalPlanQualStart builds execution trees for all subplans
whether they're going to be used during the recheck or not.  And it seems
like a pretty shaky assumption anyway, so let's just reselect our own read
pointer here.

Per bug #14870 from Andrei Gorita.  This has been broken since CTEs were
implemented, so back-patch to all supported branches.

Discussion: https://postgr.es/m/20171024155358.1471.82377@wrigleys.postgresql.org
src/backend/executor/nodeCtescan.c
src/test/isolation/expected/eval-plan-qual.out
src/test/isolation/specs/eval-plan-qual.spec