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

Go to the source code of this file.

Functions

MergeAppendStateExecInitMergeAppend (MergeAppend *node, EState *estate, int eflags)
 
void ExecEndMergeAppend (MergeAppendState *node)
 
void ExecReScanMergeAppend (MergeAppendState *node)
 

Function Documentation

◆ ExecEndMergeAppend()

void ExecEndMergeAppend ( MergeAppendState node)

Definition at line 334 of file nodeMergeAppend.c.

335{
336 PlanState **mergeplans;
337 int nplans;
338 int i;
339
340 /*
341 * get information from the node
342 */
343 mergeplans = node->mergeplans;
344 nplans = node->ms_nplans;
345
346 /*
347 * shut down each of the subscans
348 */
349 for (i = 0; i < nplans; i++)
350 ExecEndNode(mergeplans[i]);
351}
void ExecEndNode(PlanState *node)
Definition: execProcnode.c:562
int i
Definition: isn.c:72
PlanState ** mergeplans
Definition: execnodes.h:1508

References ExecEndNode(), i, MergeAppendState::mergeplans, and MergeAppendState::ms_nplans.

Referenced by ExecEndNode().

◆ ExecInitMergeAppend()

MergeAppendState * ExecInitMergeAppend ( MergeAppend node,
EState estate,
int  eflags 
)

Definition at line 65 of file nodeMergeAppend.c.

66{
68 PlanState **mergeplanstates;
69 const TupleTableSlotOps *mergeops;
70 Bitmapset *validsubplans;
71 int nplans;
72 int i,
73 j;
74
75 /* check for unsupported flags */
77
78 /*
79 * create new MergeAppendState for our node
80 */
81 mergestate->ps.plan = (Plan *) node;
82 mergestate->ps.state = estate;
83 mergestate->ps.ExecProcNode = ExecMergeAppend;
84
85 /* If run-time partition pruning is enabled, then set that up now */
86 if (node->part_prune_info != NULL)
87 {
88 PartitionPruneState *prunestate;
89
90 /*
91 * Set up pruning data structure. This also initializes the set of
92 * subplans to initialize (validsubplans) by taking into account the
93 * result of performing initial pruning if any.
94 */
95 prunestate = ExecInitPartitionPruning(&mergestate->ps,
97 node->part_prune_info,
98 &validsubplans);
99 mergestate->ms_prune_state = prunestate;
100 nplans = bms_num_members(validsubplans);
101
102 /*
103 * When no run-time pruning is required and there's at least one
104 * subplan, we can fill ms_valid_subplans immediately, preventing
105 * later calls to ExecFindMatchingSubPlans.
106 */
107 if (!prunestate->do_exec_prune && nplans > 0)
108 mergestate->ms_valid_subplans = bms_add_range(NULL, 0, nplans - 1);
109 }
110 else
111 {
112 nplans = list_length(node->mergeplans);
113
114 /*
115 * When run-time partition pruning is not enabled we can just mark all
116 * subplans as valid; they must also all be initialized.
117 */
118 Assert(nplans > 0);
119 mergestate->ms_valid_subplans = validsubplans =
120 bms_add_range(NULL, 0, nplans - 1);
121 mergestate->ms_prune_state = NULL;
122 }
123
124 mergeplanstates = (PlanState **) palloc(nplans * sizeof(PlanState *));
125 mergestate->mergeplans = mergeplanstates;
126 mergestate->ms_nplans = nplans;
127
128 mergestate->ms_slots = (TupleTableSlot **) palloc0(sizeof(TupleTableSlot *) * nplans);
129 mergestate->ms_heap = binaryheap_allocate(nplans, heap_compare_slots,
130 mergestate);
131
132 /*
133 * call ExecInitNode on each of the valid plans to be executed and save
134 * the results into the mergeplanstates array.
135 */
136 j = 0;
137 i = -1;
138 while ((i = bms_next_member(validsubplans, i)) >= 0)
139 {
140 Plan *initNode = (Plan *) list_nth(node->mergeplans, i);
141
142 mergeplanstates[j++] = ExecInitNode(initNode, estate, eflags);
143 }
144
145 /*
146 * Initialize MergeAppend's result tuple type and slot. If the child
147 * plans all produce the same fixed slot type, we can use that slot type;
148 * otherwise make a virtual slot. (Note that the result slot itself is
149 * used only to return a null tuple at end of execution; real tuples are
150 * returned to the caller in the children's own result slots. What we are
151 * doing here is allowing the parent plan node to optimize if the
152 * MergeAppend will return only one kind of slot.)
153 */
154 mergeops = ExecGetCommonSlotOps(mergeplanstates, j);
155 if (mergeops != NULL)
156 {
157 ExecInitResultTupleSlotTL(&mergestate->ps, mergeops);
158 }
159 else
160 {
162 /* show that the output slot type is not fixed */
163 mergestate->ps.resultopsset = true;
164 mergestate->ps.resultopsfixed = false;
165 }
166
167 /*
168 * Miscellaneous initialization
169 */
170 mergestate->ps.ps_ProjInfo = NULL;
171
172 /*
173 * initialize sort-key information
174 */
175 mergestate->ms_nkeys = node->numCols;
176 mergestate->ms_sortkeys = palloc0(sizeof(SortSupportData) * node->numCols);
177
178 for (i = 0; i < node->numCols; i++)
179 {
180 SortSupport sortKey = mergestate->ms_sortkeys + i;
181
183 sortKey->ssup_collation = node->collations[i];
184 sortKey->ssup_nulls_first = node->nullsFirst[i];
185 sortKey->ssup_attno = node->sortColIdx[i];
186
187 /*
188 * It isn't feasible to perform abbreviated key conversion, since
189 * tuples are pulled into mergestate's binary heap as needed. It
190 * would likely be counter-productive to convert tuples into an
191 * abbreviated representation as they're pulled up, so opt out of that
192 * additional optimization entirely.
193 */
194 sortKey->abbreviate = false;
195
196 PrepareSortSupportFromOrderingOp(node->sortOperators[i], sortKey);
197 }
198
199 /*
200 * initialize to show we have not run the subplans yet
201 */
202 mergestate->ms_initialized = false;
203
204 return mergestate;
205}
binaryheap * binaryheap_allocate(int capacity, binaryheap_comparator compare, void *arg)
Definition: binaryheap.c:39
int bms_next_member(const Bitmapset *a, int prevbit)
Definition: bitmapset.c:1306
Bitmapset * bms_add_range(Bitmapset *a, int lower, int upper)
Definition: bitmapset.c:1019
int bms_num_members(const Bitmapset *a)
Definition: bitmapset.c:751
#define Assert(condition)
Definition: c.h:815
PartitionPruneState * ExecInitPartitionPruning(PlanState *planstate, int n_total_subplans, PartitionPruneInfo *pruneinfo, Bitmapset **initially_valid_subplans)
PlanState * ExecInitNode(Plan *node, EState *estate, int eflags)
Definition: execProcnode.c:142
const TupleTableSlotOps TTSOpsVirtual
Definition: execTuples.c:84
void ExecInitResultTupleSlotTL(PlanState *planstate, const TupleTableSlotOps *tts_ops)
Definition: execTuples.c:1986
const TupleTableSlotOps * ExecGetCommonSlotOps(PlanState **planstates, int nplans)
Definition: execUtils.c:536
#define EXEC_FLAG_BACKWARD
Definition: executor.h:68
#define EXEC_FLAG_MARK
Definition: executor.h:69
int j
Definition: isn.c:73
void * palloc0(Size size)
Definition: mcxt.c:1347
void * palloc(Size size)
Definition: mcxt.c:1317
MemoryContext CurrentMemoryContext
Definition: mcxt.c:143
static int heap_compare_slots(Datum a, Datum b, void *arg)
static TupleTableSlot * ExecMergeAppend(PlanState *pstate)
#define makeNode(_type_)
Definition: nodes.h:155
static int list_length(const List *l)
Definition: pg_list.h:152
static void * list_nth(const List *list, int n)
Definition: pg_list.h:299
void PrepareSortSupportFromOrderingOp(Oid orderingOp, SortSupport ssup)
Definition: sortsupport.c:134
SortSupport ms_sortkeys
Definition: execnodes.h:1511
Bitmapset * ms_valid_subplans
Definition: execnodes.h:1516
PlanState ps
Definition: execnodes.h:1507
struct binaryheap * ms_heap
Definition: execnodes.h:1513
TupleTableSlot ** ms_slots
Definition: execnodes.h:1512
struct PartitionPruneState * ms_prune_state
Definition: execnodes.h:1515
struct PartitionPruneInfo * part_prune_info
Definition: plannodes.h:317
List * mergeplans
Definition: plannodes.h:297
bool resultopsset
Definition: execnodes.h:1226
Plan * plan
Definition: execnodes.h:1141
EState * state
Definition: execnodes.h:1143
ProjectionInfo * ps_ProjInfo
Definition: execnodes.h:1181
bool resultopsfixed
Definition: execnodes.h:1222
ExecProcNodeMtd ExecProcNode
Definition: execnodes.h:1147
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, binaryheap_allocate(), bms_add_range(), bms_next_member(), bms_num_members(), CurrentMemoryContext, PartitionPruneState::do_exec_prune, EXEC_FLAG_BACKWARD, EXEC_FLAG_MARK, ExecGetCommonSlotOps(), ExecInitNode(), ExecInitPartitionPruning(), ExecInitResultTupleSlotTL(), ExecMergeAppend(), PlanState::ExecProcNode, heap_compare_slots(), i, j, list_length(), list_nth(), makeNode, MergeAppendState::mergeplans, MergeAppend::mergeplans, MergeAppendState::ms_heap, MergeAppendState::ms_initialized, MergeAppendState::ms_nkeys, MergeAppendState::ms_nplans, MergeAppendState::ms_prune_state, MergeAppendState::ms_slots, MergeAppendState::ms_sortkeys, MergeAppendState::ms_valid_subplans, MergeAppend::numCols, palloc(), palloc0(), MergeAppend::part_prune_info, PlanState::plan, PrepareSortSupportFromOrderingOp(), MergeAppendState::ps, PlanState::ps_ProjInfo, PlanState::resultopsfixed, PlanState::resultopsset, SortSupportData::ssup_attno, SortSupportData::ssup_collation, SortSupportData::ssup_cxt, SortSupportData::ssup_nulls_first, PlanState::state, and TTSOpsVirtual.

Referenced by ExecInitNode().

◆ ExecReScanMergeAppend()

void ExecReScanMergeAppend ( MergeAppendState node)

Definition at line 354 of file nodeMergeAppend.c.

355{
356 int i;
357
358 /*
359 * If any PARAM_EXEC Params used in pruning expressions have changed, then
360 * we'd better unset the valid subplans so that they are reselected for
361 * the new parameter values.
362 */
363 if (node->ms_prune_state &&
364 bms_overlap(node->ps.chgParam,
366 {
368 node->ms_valid_subplans = NULL;
369 }
370
371 for (i = 0; i < node->ms_nplans; i++)
372 {
373 PlanState *subnode = node->mergeplans[i];
374
375 /*
376 * ExecReScan doesn't know about my subplans, so I have to do
377 * changed-parameter signaling myself.
378 */
379 if (node->ps.chgParam != NULL)
380 UpdateChangedParamSet(subnode, node->ps.chgParam);
381
382 /*
383 * If chgParam of subnode is not null then plan will be re-scanned by
384 * first ExecProcNode.
385 */
386 if (subnode->chgParam == NULL)
387 ExecReScan(subnode);
388 }
390 node->ms_initialized = false;
391}
void binaryheap_reset(binaryheap *heap)
Definition: binaryheap.c:63
void bms_free(Bitmapset *a)
Definition: bitmapset.c:239
bool bms_overlap(const Bitmapset *a, const Bitmapset *b)
Definition: bitmapset.c:582
void ExecReScan(PlanState *node)
Definition: execAmi.c:76
void UpdateChangedParamSet(PlanState *node, Bitmapset *newchg)
Definition: execUtils.c:889
Bitmapset * execparamids
Bitmapset * chgParam
Definition: execnodes.h:1173

References binaryheap_reset(), bms_free(), bms_overlap(), PlanState::chgParam, PartitionPruneState::execparamids, ExecReScan(), i, MergeAppendState::mergeplans, MergeAppendState::ms_heap, MergeAppendState::ms_initialized, MergeAppendState::ms_nplans, MergeAppendState::ms_prune_state, MergeAppendState::ms_valid_subplans, MergeAppendState::ps, and UpdateChangedParamSet().

Referenced by ExecReScan().