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

Go to the source code of this file.

Functions

CteScanStateExecInitCteScan (CteScan *node, EState *estate, int eflags)
 
void ExecEndCteScan (CteScanState *node)
 
void ExecReScanCteScan (CteScanState *node)
 

Function Documentation

◆ ExecEndCteScan()

void ExecEndCteScan ( CteScanState node)

Definition at line 288 of file nodeCtescan.c.

289 {
290  /*
291  * Free exprcontext
292  */
293  ExecFreeExprContext(&node->ss.ps);
294 
295  /*
296  * clean out the tuple table
297  */
298  if (node->ss.ps.ps_ResultTupleSlot)
301 
302  /*
303  * If I am the leader, free the tuplestore.
304  */
305  if (node->leader == node)
306  {
307  tuplestore_end(node->cte_table);
308  node->cte_table = NULL;
309  }
310 }
void ExecFreeExprContext(PlanState *planstate)
Definition: execUtils.c:658
Tuplestorestate * cte_table
Definition: execnodes.h:1910
ScanState ss
Definition: execnodes.h:1903
struct CteScanState * leader
Definition: execnodes.h:1908
TupleTableSlot * ps_ResultTupleSlot
Definition: execnodes.h:1075
TupleTableSlot * ss_ScanTupleSlot
Definition: execnodes.h:1477
PlanState ps
Definition: execnodes.h:1474
void tuplestore_end(Tuplestorestate *state)
Definition: tuplestore.c:453
static TupleTableSlot * ExecClearTuple(TupleTableSlot *slot)
Definition: tuptable.h:433

References CteScanState::cte_table, ExecClearTuple(), ExecFreeExprContext(), CteScanState::leader, ScanState::ps, PlanState::ps_ResultTupleSlot, CteScanState::ss, ScanState::ss_ScanTupleSlot, and tuplestore_end().

Referenced by ExecEndNode().

◆ ExecInitCteScan()

CteScanState* ExecInitCteScan ( CteScan node,
EState estate,
int  eflags 
)

Definition at line 175 of file nodeCtescan.c.

176 {
177  CteScanState *scanstate;
178  ParamExecData *prmdata;
179 
180  /* check for unsupported flags */
181  Assert(!(eflags & EXEC_FLAG_MARK));
182 
183  /*
184  * For the moment we have to force the tuplestore to allow REWIND, because
185  * we might be asked to rescan the CTE even though upper levels didn't
186  * tell us to be prepared to do it efficiently. Annoying, since this
187  * prevents truncation of the tuplestore. XXX FIXME
188  *
189  * Note: if we are in an EPQ recheck plan tree, it's likely that no access
190  * to the tuplestore is needed at all, making this even more annoying.
191  * It's not worth improving that as long as all the read pointers would
192  * have REWIND anyway, but if we ever improve this logic then that aspect
193  * should be considered too.
194  */
195  eflags |= EXEC_FLAG_REWIND;
196 
197  /*
198  * CteScan should not have any children.
199  */
200  Assert(outerPlan(node) == NULL);
201  Assert(innerPlan(node) == NULL);
202 
203  /*
204  * create new CteScanState for node
205  */
206  scanstate = makeNode(CteScanState);
207  scanstate->ss.ps.plan = (Plan *) node;
208  scanstate->ss.ps.state = estate;
209  scanstate->ss.ps.ExecProcNode = ExecCteScan;
210  scanstate->eflags = eflags;
211  scanstate->cte_table = NULL;
212  scanstate->eof_cte = false;
213 
214  /*
215  * Find the already-initialized plan for the CTE query.
216  */
217  scanstate->cteplanstate = (PlanState *) list_nth(estate->es_subplanstates,
218  node->ctePlanId - 1);
219 
220  /*
221  * The Param slot associated with the CTE query is used to hold a pointer
222  * to the CteState of the first CteScan node that initializes for this
223  * CTE. This node will be the one that holds the shared state for all the
224  * CTEs, particularly the shared tuplestore.
225  */
226  prmdata = &(estate->es_param_exec_vals[node->cteParam]);
227  Assert(prmdata->execPlan == NULL);
228  Assert(!prmdata->isnull);
229  scanstate->leader = castNode(CteScanState, DatumGetPointer(prmdata->value));
230  if (scanstate->leader == NULL)
231  {
232  /* I am the leader */
233  prmdata->value = PointerGetDatum(scanstate);
234  scanstate->leader = scanstate;
235  scanstate->cte_table = tuplestore_begin_heap(true, false, work_mem);
236  tuplestore_set_eflags(scanstate->cte_table, scanstate->eflags);
237  scanstate->readptr = 0;
238  }
239  else
240  {
241  /* Not the leader */
242  /* Create my own read pointer, and ensure it is at start */
243  scanstate->readptr =
245  scanstate->eflags);
247  scanstate->readptr);
248  tuplestore_rescan(scanstate->leader->cte_table);
249  }
250 
251  /*
252  * Miscellaneous initialization
253  *
254  * create expression context for node
255  */
256  ExecAssignExprContext(estate, &scanstate->ss.ps);
257 
258  /*
259  * The scan tuple type (ie, the rowtype we expect to find in the work
260  * table) is the same as the result rowtype of the CTE query.
261  */
262  ExecInitScanTupleSlot(estate, &scanstate->ss,
263  ExecGetResultType(scanstate->cteplanstate),
265 
266  /*
267  * Initialize result type and projection.
268  */
269  ExecInitResultTypeTL(&scanstate->ss.ps);
270  ExecAssignScanProjectionInfo(&scanstate->ss);
271 
272  /*
273  * initialize child expressions
274  */
275  scanstate->ss.ps.qual =
276  ExecInitQual(node->scan.plan.qual, (PlanState *) scanstate);
277 
278  return scanstate;
279 }
ExprState * ExecInitQual(List *qual, PlanState *parent)
Definition: execExpr.c:213
void ExecAssignScanProjectionInfo(ScanState *node)
Definition: execScan.c:271
void ExecInitScanTupleSlot(EState *estate, ScanState *scanstate, TupleDesc tupledesc, const TupleTableSlotOps *tts_ops)
Definition: execTuples.c:1812
void ExecInitResultTypeTL(PlanState *planstate)
Definition: execTuples.c:1756
const TupleTableSlotOps TTSOpsMinimalTuple
Definition: execTuples.c:85
TupleDesc ExecGetResultType(PlanState *planstate)
Definition: execUtils.c:498
void ExecAssignExprContext(EState *estate, PlanState *planstate)
Definition: execUtils.c:488
#define EXEC_FLAG_REWIND
Definition: executor.h:67
#define EXEC_FLAG_MARK
Definition: executor.h:69
int work_mem
Definition: globals.c:125
Assert(fmt[strlen(fmt) - 1] !='\n')
static TupleTableSlot * ExecCteScan(PlanState *pstate)
Definition: nodeCtescan.c:160
#define makeNode(_type_)
Definition: nodes.h:176
#define castNode(_type_, nodeptr)
Definition: nodes.h:197
static void * list_nth(const List *list, int n)
Definition: pg_list.h:299
#define innerPlan(node)
Definition: plannodes.h:182
#define outerPlan(node)
Definition: plannodes.h:183
static Datum PointerGetDatum(const void *X)
Definition: postgres.h:322
static Pointer DatumGetPointer(Datum X)
Definition: postgres.h:312
PlanState * cteplanstate
Definition: execnodes.h:1906
int ctePlanId
Definition: plannodes.h:641
int cteParam
Definition: plannodes.h:642
Scan scan
Definition: plannodes.h:640
ParamExecData * es_param_exec_vals
Definition: execnodes.h:654
List * es_subplanstates
Definition: execnodes.h:674
bool isnull
Definition: params.h:150
Datum value
Definition: params.h:149
void * execPlan
Definition: params.h:148
ExprState * qual
Definition: execnodes.h:1058
Plan * plan
Definition: execnodes.h:1037
EState * state
Definition: execnodes.h:1039
ExecProcNodeMtd ExecProcNode
Definition: execnodes.h:1043
void tuplestore_select_read_pointer(Tuplestorestate *state, int ptr)
Definition: tuplestore.c:473
Tuplestorestate * tuplestore_begin_heap(bool randomAccess, bool interXact, int maxKBytes)
Definition: tuplestore.c:318
void tuplestore_rescan(Tuplestorestate *state)
Definition: tuplestore.c:1233
int tuplestore_alloc_read_pointer(Tuplestorestate *state, int eflags)
Definition: tuplestore.c:383
void tuplestore_set_eflags(Tuplestorestate *state, int eflags)
Definition: tuplestore.c:359

References Assert(), castNode, CteScanState::cte_table, CteScan::cteParam, CteScan::ctePlanId, CteScanState::cteplanstate, DatumGetPointer(), CteScanState::eflags, CteScanState::eof_cte, EState::es_param_exec_vals, EState::es_subplanstates, EXEC_FLAG_MARK, EXEC_FLAG_REWIND, ExecAssignExprContext(), ExecAssignScanProjectionInfo(), ExecCteScan(), ExecGetResultType(), ExecInitQual(), ExecInitResultTypeTL(), ExecInitScanTupleSlot(), ParamExecData::execPlan, PlanState::ExecProcNode, innerPlan, ParamExecData::isnull, CteScanState::leader, list_nth(), makeNode, outerPlan, PlanState::plan, PointerGetDatum(), ScanState::ps, PlanState::qual, CteScanState::readptr, CteScan::scan, CteScanState::ss, PlanState::state, TTSOpsMinimalTuple, tuplestore_alloc_read_pointer(), tuplestore_begin_heap(), tuplestore_rescan(), tuplestore_select_read_pointer(), tuplestore_set_eflags(), ParamExecData::value, and work_mem.

Referenced by ExecInitNode().

◆ ExecReScanCteScan()

void ExecReScanCteScan ( CteScanState node)

Definition at line 319 of file nodeCtescan.c.

320 {
321  Tuplestorestate *tuplestorestate = node->leader->cte_table;
322 
323  if (node->ss.ps.ps_ResultTupleSlot)
325 
326  ExecScanReScan(&node->ss);
327 
328  /*
329  * Clear the tuplestore if a new scan of the underlying CTE is required.
330  * This implicitly resets all the tuplestore's read pointers. Note that
331  * multiple CTE nodes might redundantly clear the tuplestore; that's OK,
332  * and not unduly expensive. We'll stop taking this path as soon as
333  * somebody has attempted to read something from the underlying CTE
334  * (thereby causing its chgParam to be cleared).
335  */
336  if (node->leader->cteplanstate->chgParam != NULL)
337  {
338  tuplestore_clear(tuplestorestate);
339  node->leader->eof_cte = false;
340  }
341  else
342  {
343  /*
344  * Else, just rewind my own pointer. Either the underlying CTE
345  * doesn't need a rescan (and we can re-read what's in the tuplestore
346  * now), or somebody else already took care of it.
347  */
348  tuplestore_select_read_pointer(tuplestorestate, node->readptr);
349  tuplestore_rescan(tuplestorestate);
350  }
351 }
void ExecScanReScan(ScanState *node)
Definition: execScan.c:298
Bitmapset * chgParam
Definition: execnodes.h:1069
void tuplestore_clear(Tuplestorestate *state)
Definition: tuplestore.c:418

References PlanState::chgParam, CteScanState::cte_table, CteScanState::cteplanstate, CteScanState::eof_cte, ExecClearTuple(), ExecScanReScan(), CteScanState::leader, ScanState::ps, PlanState::ps_ResultTupleSlot, CteScanState::readptr, CteScanState::ss, tuplestore_clear(), tuplestore_rescan(), and tuplestore_select_read_pointer().

Referenced by ExecReScan().