diff options
author | Andres Freund <andres@anarazel.de> | 2018-11-15 23:10:50 -0800 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2018-11-15 23:16:41 -0800 |
commit | a387a3dff9001225ad571ff2755d139f5bd193b3 (patch) | |
tree | 3dac372cd2fa302d2c6cd4ecb4d21d73ca07fd85 /src/backend/executor/nodeGatherMerge.c | |
parent | f92cd7392386147f6a16787c1d5c78d0e9b7cf34 (diff) | |
download | postgresql-a387a3dff9001225ad571ff2755d139f5bd193b3.tar.gz postgresql-a387a3dff9001225ad571ff2755d139f5bd193b3.zip |
Fix slot type assumptions for nodeGather[Merge].
The assumption made in 1a0586de3657c was wrong, as evidenced by
buildfarm failure on locust, which runs with
force_parallel_mode=regress. The tuples accessed in either nodes are
in the outer slot, and we can't trivially rely on the slot type being
known because the leader might execute the subsidiary node directly,
or via the tuple queue on a worker. In the latter case the tuple will
always be a heaptuple slot, but in the former, it'll be whatever the
subsidiary node returns.
Diffstat (limited to 'src/backend/executor/nodeGatherMerge.c')
-rw-r--r-- | src/backend/executor/nodeGatherMerge.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/backend/executor/nodeGatherMerge.c b/src/backend/executor/nodeGatherMerge.c index 651565123be..51d910bd5ee 100644 --- a/src/backend/executor/nodeGatherMerge.c +++ b/src/backend/executor/nodeGatherMerge.c @@ -110,6 +110,15 @@ ExecInitGatherMerge(GatherMerge *node, EState *estate, int eflags) outerPlanState(gm_state) = ExecInitNode(outerNode, estate, eflags); /* + * Leader may access ExecProcNode result directly (if + * need_to_scan_locally), or from workers via tuple queue. So we can't + * trivially rely on the slot type being fixed for expressions evaluated + * within this node. + */ + gm_state->ps.outeropsset = true; + gm_state->ps.outeropsfixed = false; + + /* * Store the tuple descriptor into gather merge state, so we can use it * while initializing the gather merge slots. */ @@ -122,7 +131,10 @@ ExecInitGatherMerge(GatherMerge *node, EState *estate, int eflags) ExecInitResultTypeTL(&gm_state->ps); ExecConditionalAssignProjectionInfo(&gm_state->ps, tupDesc, OUTER_VAR); - /* leader accesses ExecProcNode result directly, others go through tuple queue */ + /* + * Without projections result slot type is not trivially known, see + * comment above. + */ if (gm_state->ps.ps_ProjInfo == NULL) { gm_state->ps.resultopsset = true; |