MCPcopy Create free account
hub / github.com/apache/cloudberry / ExecSubqueryScan

Function ExecSubqueryScan

src/backend/executor/nodeSubqueryscan.c:84–92  ·  view source on GitHub ↗

---------------------------------------------------------------- * ExecSubqueryScan(node) * * Scans the subquery sequentially and returns the next qualifying * tuple. * We call the ExecScan() routine and pass it the appropriate * access method functions. * ---------------------------------------------------------------- */

Source from the content-addressed store, hash-verified

82 * ----------------------------------------------------------------
83 */
84static TupleTableSlot *
85ExecSubqueryScan(PlanState *pstate)
86{
87 SubqueryScanState *node = castNode(SubqueryScanState, pstate);
88
89 return ExecScan(&node->ss,
90 (ExecScanAccessMtd) SubqueryNext,
91 (ExecScanRecheckMtd) SubqueryRecheck);
92}
93
94/* ----------------------------------------------------------------
95 * ExecInitSubqueryScan

Callers

nothing calls this directly

Calls 1

ExecScanFunction · 0.85

Tested by

no test coverage detected