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

Go to the source code of this file.

Functions

SubqueryScanStateExecInitSubqueryScan (SubqueryScan *node, EState *estate, int eflags)
 
void ExecEndSubqueryScan (SubqueryScanState *node)
 
void ExecReScanSubqueryScan (SubqueryScanState *node)
 

Function Documentation

◆ ExecEndSubqueryScan()

void ExecEndSubqueryScan ( SubqueryScanState node)
extern

Definition at line 168 of file nodeSubqueryscan.c.

169{
170 /*
171 * close down subquery
172 */
173 ExecEndNode(node->subplan);
174}
void ExecEndNode(PlanState *node)
PlanState * subplan
Definition execnodes.h:1931

References ExecEndNode(), and SubqueryScanState::subplan.

Referenced by ExecEndNode().

◆ ExecInitSubqueryScan()

SubqueryScanState * ExecInitSubqueryScan ( SubqueryScan node,
EState estate,
int  eflags 
)
extern

Definition at line 97 of file nodeSubqueryscan.c.

98{
100
101 /* check for unsupported flags */
102 Assert(!(eflags & EXEC_FLAG_MARK));
103
104 /* SubqueryScan should not have any "normal" children */
105 Assert(outerPlan(node) == NULL);
106 Assert(innerPlan(node) == NULL);
107
108 /*
109 * create state structure
110 */
112 subquerystate->ss.ps.plan = (Plan *) node;
113 subquerystate->ss.ps.state = estate;
114 subquerystate->ss.ps.ExecProcNode = ExecSubqueryScan;
115
116 /*
117 * Miscellaneous initialization
118 *
119 * create expression context for node
120 */
121 ExecAssignExprContext(estate, &subquerystate->ss.ps);
122
123 /*
124 * initialize subquery
125 */
126 subquerystate->subplan = ExecInitNode(node->subplan, estate, eflags);
127
128 /*
129 * Initialize scan slot and type (needed by ExecAssignScanProjectionInfo)
130 */
134
135 /*
136 * The slot used as the scantuple isn't the slot above (outside of EPQ),
137 * but the one from the node below.
138 */
139 subquerystate->ss.ps.scanopsset = true;
140 subquerystate->ss.ps.scanops = ExecGetResultSlotOps(subquerystate->subplan,
141 &subquerystate->ss.ps.scanopsfixed);
142 subquerystate->ss.ps.resultopsset = true;
143 subquerystate->ss.ps.resultops = subquerystate->ss.ps.scanops;
144 subquerystate->ss.ps.resultopsfixed = subquerystate->ss.ps.scanopsfixed;
145
146 /*
147 * Initialize result type and projection.
148 */
151
152 /*
153 * initialize child expressions
154 */
155 subquerystate->ss.ps.qual =
156 ExecInitQual(node->scan.plan.qual, (PlanState *) subquerystate);
157
158 return subquerystate;
159}
#define Assert(condition)
Definition c.h:873
ExprState * ExecInitQual(List *qual, PlanState *parent)
Definition execExpr.c:229
PlanState * ExecInitNode(Plan *node, EState *estate, int eflags)
void ExecAssignScanProjectionInfo(ScanState *node)
Definition execScan.c:81
void ExecInitScanTupleSlot(EState *estate, ScanState *scanstate, TupleDesc tupledesc, const TupleTableSlotOps *tts_ops)
void ExecInitResultTypeTL(PlanState *planstate)
TupleDesc ExecGetResultType(PlanState *planstate)
Definition execUtils.c:495
void ExecAssignExprContext(EState *estate, PlanState *planstate)
Definition execUtils.c:485
const TupleTableSlotOps * ExecGetResultSlotOps(PlanState *planstate, bool *isfixed)
Definition execUtils.c:504
#define EXEC_FLAG_MARK
Definition executor.h:70
static TupleTableSlot * ExecSubqueryScan(PlanState *pstate)
#define makeNode(_type_)
Definition nodes.h:161
#define innerPlan(node)
Definition plannodes.h:260
#define outerPlan(node)
Definition plannodes.h:261
static int fb(int x)
Plan * subplan
Definition plannodes.h:755

References Assert, EXEC_FLAG_MARK, ExecAssignExprContext(), ExecAssignScanProjectionInfo(), ExecGetResultSlotOps(), ExecGetResultType(), ExecInitNode(), ExecInitQual(), ExecInitResultTypeTL(), ExecInitScanTupleSlot(), ExecSubqueryScan(), fb(), innerPlan, makeNode, outerPlan, SubqueryScan::scan, and SubqueryScan::subplan.

Referenced by ExecInitNode().

◆ ExecReScanSubqueryScan()

void ExecReScanSubqueryScan ( SubqueryScanState node)
extern

Definition at line 183 of file nodeSubqueryscan.c.

184{
185 ExecScanReScan(&node->ss);
186
187 /*
188 * ExecReScan doesn't know about my subplan, so I have to do
189 * changed-parameter signaling myself. This is just as well, because the
190 * subplan has its own memory context in which its chgParam state lives.
191 */
192 if (node->ss.ps.chgParam != NULL)
194
195 /*
196 * if chgParam of subnode is not null then plan will be re-scanned by
197 * first ExecProcNode.
198 */
199 if (node->subplan->chgParam == NULL)
200 ExecReScan(node->subplan);
201}
void ExecReScan(PlanState *node)
Definition execAmi.c:77
void ExecScanReScan(ScanState *node)
Definition execScan.c:108
void UpdateChangedParamSet(PlanState *node, Bitmapset *newchg)
Definition execUtils.c:910
Bitmapset * chgParam
Definition execnodes.h:1199
PlanState ps
Definition execnodes.h:1623

References PlanState::chgParam, ExecReScan(), ExecScanReScan(), fb(), ScanState::ps, SubqueryScanState::ss, SubqueryScanState::subplan, and UpdateChangedParamSet().

Referenced by ExecReScan().