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

Function ExecTableFuncScan

src/backend/executor/nodeTableFuncscan.c:95–103  ·  view source on GitHub ↗

---------------------------------------------------------------- * ExecTableFuncscan(node) * * Scans the function 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

93 * ----------------------------------------------------------------
94 */
95static TupleTableSlot *
96ExecTableFuncScan(PlanState *pstate)
97{
98 TableFuncScanState *node = castNode(TableFuncScanState, pstate);
99
100 return ExecScan(&node->ss,
101 (ExecScanAccessMtd) TableFuncNext,
102 (ExecScanRecheckMtd) TableFuncRecheck);
103}
104
105/* ----------------------------------------------------------------
106 * ExecInitTableFuncscan

Callers

nothing calls this directly

Calls 1

ExecScanFunction · 0.85

Tested by

no test coverage detected