PostgreSQL Source Code git master
nodeGatherMerge.h File Reference
#include "nodes/execnodes.h"
Include dependency graph for nodeGatherMerge.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

GatherMergeStateExecInitGatherMerge (GatherMerge *node, EState *estate, int eflags)
 
void ExecEndGatherMerge (GatherMergeState *node)
 
void ExecReScanGatherMerge (GatherMergeState *node)
 
void ExecShutdownGatherMerge (GatherMergeState *node)
 

Function Documentation

◆ ExecEndGatherMerge()

void ExecEndGatherMerge ( GatherMergeState node)

Definition at line 292 of file nodeGatherMerge.c.

293{
294 ExecEndNode(outerPlanState(node)); /* let children clean up first */
296}
void ExecEndNode(PlanState *node)
Definition: execProcnode.c:562
#define outerPlanState(node)
Definition: execnodes.h:1261
void ExecShutdownGatherMerge(GatherMergeState *node)

References ExecEndNode(), ExecShutdownGatherMerge(), and outerPlanState.

Referenced by ExecEndNode().

◆ ExecInitGatherMerge()

GatherMergeState * ExecInitGatherMerge ( GatherMerge node,
EState estate,
int  eflags 
)

Definition at line 68 of file nodeGatherMerge.c.

69{
70 GatherMergeState *gm_state;
71 Plan *outerNode;
72 TupleDesc tupDesc;
73
74 /* Gather merge node doesn't have innerPlan node. */
75 Assert(innerPlan(node) == NULL);
76
77 /*
78 * create state structure
79 */
80 gm_state = makeNode(GatherMergeState);
81 gm_state->ps.plan = (Plan *) node;
82 gm_state->ps.state = estate;
84
85 gm_state->initialized = false;
86 gm_state->gm_initialized = false;
87 gm_state->tuples_needed = -1;
88
89 /*
90 * Miscellaneous initialization
91 *
92 * create expression context for node
93 */
94 ExecAssignExprContext(estate, &gm_state->ps);
95
96 /*
97 * GatherMerge doesn't support checking a qual (it's always more efficient
98 * to do it in the child node).
99 */
100 Assert(!node->plan.qual);
101
102 /*
103 * now initialize outer plan
104 */
105 outerNode = outerPlan(node);
106 outerPlanState(gm_state) = ExecInitNode(outerNode, estate, eflags);
107
108 /*
109 * Leader may access ExecProcNode result directly (if
110 * need_to_scan_locally), or from workers via tuple queue. So we can't
111 * trivially rely on the slot type being fixed for expressions evaluated
112 * within this node.
113 */
114 gm_state->ps.outeropsset = true;
115 gm_state->ps.outeropsfixed = false;
116
117 /*
118 * Store the tuple descriptor into gather merge state, so we can use it
119 * while initializing the gather merge slots.
120 */
121 tupDesc = ExecGetResultType(outerPlanState(gm_state));
122 gm_state->tupDesc = tupDesc;
123
124 /*
125 * Initialize result type and projection.
126 */
127 ExecInitResultTypeTL(&gm_state->ps);
129
130 /*
131 * Without projections result slot type is not trivially known, see
132 * comment above.
133 */
134 if (gm_state->ps.ps_ProjInfo == NULL)
135 {
136 gm_state->ps.resultopsset = true;
137 gm_state->ps.resultopsfixed = false;
138 }
139
140 /*
141 * initialize sort-key information
142 */
143 if (node->numCols)
144 {
145 int i;
146
147 gm_state->gm_nkeys = node->numCols;
148 gm_state->gm_sortkeys =
149 palloc0(sizeof(SortSupportData) * node->numCols);
150
151 for (i = 0; i < node->numCols; i++)
152 {
153 SortSupport sortKey = gm_state->gm_sortkeys + i;
154
156 sortKey->ssup_collation = node->collations[i];
157 sortKey->ssup_nulls_first = node->nullsFirst[i];
158 sortKey->ssup_attno = node->sortColIdx[i];
159
160 /*
161 * We don't perform abbreviated key conversion here, for the same
162 * reasons that it isn't used in MergeAppend
163 */
164 sortKey->abbreviate = false;
165
166 PrepareSortSupportFromOrderingOp(node->sortOperators[i], sortKey);
167 }
168 }
169
170 /* Now allocate the workspace for gather merge */
171 gather_merge_setup(gm_state);
172
173 return gm_state;
174}
PlanState * ExecInitNode(Plan *node, EState *estate, int eflags)
Definition: execProcnode.c:142
void ExecInitResultTypeTL(PlanState *planstate)
Definition: execTuples.c:1944
TupleDesc ExecGetResultType(PlanState *planstate)
Definition: execUtils.c:495
void ExecAssignExprContext(EState *estate, PlanState *planstate)
Definition: execUtils.c:485
void ExecConditionalAssignProjectionInfo(PlanState *planstate, TupleDesc inputDesc, int varno)
Definition: execUtils.c:603
Assert(PointerIsAligned(start, uint64))
int i
Definition: isn.c:77
void * palloc0(Size size)
Definition: mcxt.c:1395
MemoryContext CurrentMemoryContext
Definition: mcxt.c:160
static void gather_merge_setup(GatherMergeState *gm_state)
static TupleTableSlot * ExecGatherMerge(PlanState *pstate)
#define makeNode(_type_)
Definition: nodes.h:161
#define innerPlan(node)
Definition: plannodes.h:260
#define outerPlan(node)
Definition: plannodes.h:261
#define OUTER_VAR
Definition: primnodes.h:243
void PrepareSortSupportFromOrderingOp(Oid orderingOp, SortSupport ssup)
Definition: sortsupport.c:134
TupleDesc tupDesc
Definition: execnodes.h:2776
SortSupport gm_sortkeys
Definition: execnodes.h:2778
PlanState ps
Definition: execnodes.h:2770
bool outeropsset
Definition: execnodes.h:1248
bool resultopsset
Definition: execnodes.h:1250
Plan * plan
Definition: execnodes.h:1165
bool outeropsfixed
Definition: execnodes.h:1244
EState * state
Definition: execnodes.h:1167
ProjectionInfo * ps_ProjInfo
Definition: execnodes.h:1205
bool resultopsfixed
Definition: execnodes.h:1246
ExecProcNodeMtd ExecProcNode
Definition: execnodes.h:1171
List * qual
Definition: plannodes.h:231
AttrNumber ssup_attno
Definition: sortsupport.h:81
bool ssup_nulls_first
Definition: sortsupport.h:75
MemoryContext ssup_cxt
Definition: sortsupport.h:66

References SortSupportData::abbreviate, Assert(), CurrentMemoryContext, ExecAssignExprContext(), ExecConditionalAssignProjectionInfo(), ExecGatherMerge(), ExecGetResultType(), ExecInitNode(), ExecInitResultTypeTL(), PlanState::ExecProcNode, gather_merge_setup(), GatherMergeState::gm_initialized, GatherMergeState::gm_nkeys, GatherMergeState::gm_sortkeys, i, GatherMergeState::initialized, innerPlan, makeNode, GatherMerge::numCols, OUTER_VAR, PlanState::outeropsfixed, PlanState::outeropsset, outerPlan, outerPlanState, palloc0(), PlanState::plan, GatherMerge::plan, PrepareSortSupportFromOrderingOp(), GatherMergeState::ps, PlanState::ps_ProjInfo, Plan::qual, PlanState::resultopsfixed, PlanState::resultopsset, SortSupportData::ssup_attno, SortSupportData::ssup_collation, SortSupportData::ssup_cxt, SortSupportData::ssup_nulls_first, PlanState::state, GatherMergeState::tupDesc, and GatherMergeState::tuples_needed.

Referenced by ExecInitNode().

◆ ExecReScanGatherMerge()

void ExecReScanGatherMerge ( GatherMergeState node)

Definition at line 342 of file nodeGatherMerge.c.

343{
344 GatherMerge *gm = (GatherMerge *) node->ps.plan;
346
347 /* Make sure any existing workers are gracefully shut down */
349
350 /* Free any unused tuples, so we don't leak memory across rescans */
352
353 /* Mark node so that shared state will be rebuilt at next call */
354 node->initialized = false;
355 node->gm_initialized = false;
356
357 /*
358 * Set child node's chgParam to tell it that the next scan might deliver a
359 * different set of rows within the leader process. (The overall rowset
360 * shouldn't change, but the leader process's subset might; hence nodes
361 * between here and the parallel table scan node mustn't optimize on the
362 * assumption of an unchanging rowset.)
363 */
364 if (gm->rescan_param >= 0)
365 outerPlan->chgParam = bms_add_member(outerPlan->chgParam,
366 gm->rescan_param);
367
368 /*
369 * If chgParam of subnode is not null then plan will be re-scanned by
370 * first ExecProcNode. Note: because this does nothing if we have a
371 * rescan_param, it's currently guaranteed that parallel-aware child nodes
372 * will not see a ReScan call until after they get a ReInitializeDSM call.
373 * That ordering might not be something to rely on, though. A good rule
374 * of thumb is that ReInitializeDSM should reset only shared state, ReScan
375 * should reset only local state, and anything that depends on both of
376 * those steps being finished must wait until the first ExecProcNode call.
377 */
378 if (outerPlan->chgParam == NULL)
380}
Bitmapset * bms_add_member(Bitmapset *a, int x)
Definition: bitmapset.c:814
void ExecReScan(PlanState *node)
Definition: execAmi.c:77
static void gather_merge_clear_tuples(GatherMergeState *gm_state)
static void ExecShutdownGatherMergeWorkers(GatherMergeState *node)
int rescan_param
Definition: plannodes.h:1366

References bms_add_member(), ExecReScan(), ExecShutdownGatherMergeWorkers(), gather_merge_clear_tuples(), GatherMergeState::gm_initialized, GatherMergeState::initialized, outerPlan, outerPlanState, PlanState::plan, GatherMergeState::ps, and GatherMerge::rescan_param.

Referenced by ExecReScan().

◆ ExecShutdownGatherMerge()

void ExecShutdownGatherMerge ( GatherMergeState node)

Definition at line 305 of file nodeGatherMerge.c.

306{
308
309 /* Now destroy the parallel context. */
310 if (node->pei != NULL)
311 {
313 node->pei = NULL;
314 }
315}
void ExecParallelCleanup(ParallelExecutorInfo *pei)
struct ParallelExecutorInfo * pei
Definition: execnodes.h:2779

References ExecParallelCleanup(), ExecShutdownGatherMergeWorkers(), and GatherMergeState::pei.

Referenced by ExecEndGatherMerge(), and ExecShutdownNode_walker().