]> granicus.if.org Git - postgresql/commit
Fix test for subplans in force-parallel mode.
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 21 Nov 2016 16:09:24 +0000 (11:09 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 21 Nov 2016 16:09:33 +0000 (11:09 -0500)
commit01f08cbbc975c56cbffc8e051ee4470ab7516358
tree8688c16cfee26ad42254c3f619dab5a6440bcc75
parent90f8b4be5b9c86a3a609b7cf2d8a76e0a74a75a4
Fix test for subplans in force-parallel mode.

We mustn't force parallel mode if the query has any subplans, since
ExecSerializePlan doesn't transmit them to workers.  Testing
top_plan->initPlan is inadequate because (1) there might be initPlans
attached to lower plan nodes, and (2) non-initPlan subplans don't
work either.  There's certainly room for improvement in those
restrictions, but for the moment that's what we've got.

Amit Kapila, per report from Andreas Seltenreich

Discussion: <8737im6pmh.fsf@credativ.de>
src/backend/optimizer/plan/planner.c