]> granicus.if.org Git - postgresql/commit
Tweak use of ExecContextForcesOids by Gather (Merge).
authorRobert Haas <rhaas@postgresql.org>
Mon, 20 Nov 2017 17:34:06 +0000 (12:34 -0500)
committerRobert Haas <rhaas@postgresql.org>
Mon, 20 Nov 2017 17:34:06 +0000 (12:34 -0500)
commit0510421ee091ee3ddabdd5bd7ed096563f6bf17f
tree59edfd855fa7117853e7f5e40d7725b4a771b1dc
parentf455e1125e2588d4cd4fc663c6a10da4e003a3b5
Tweak use of ExecContextForcesOids by Gather (Merge).

Specifically, pass the outer plan's PlanState instead of our own
PlanState.  At present, ExecContextForcesOids doesn't actually care
which PlanState we pass; it just looks through to the underlying
EState to find the result relation or top-level eflags.  However, in
the future it might care.  If that happens, and if our goal is to get
a tuple descriptor that matches that of the outer plan, then I think
what we care about is whether the outer plan's context forces OIDs,
rather than whether our own context forces OIDs, just as we use the
outer node's target list rather than our own.

Patch by me, reviewed by Amit Kapila.

Discussion: http://postgr.es/m/CA+TgmoZ0ZL=cesZFq8c9NnfK6bqy-wwUd3_74iYGodYrSoQ7Fw@mail.gmail.com
src/backend/executor/nodeGather.c
src/backend/executor/nodeGatherMerge.c