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

Function ExecTableFunction

src/backend/executor/nodeTableFunction.c:234–242  ·  view source on GitHub ↗

* ExecTableFunction - wrapper around TableFunctionNext */

Source from the content-addressed store, hash-verified

232 * ExecTableFunction - wrapper around TableFunctionNext
233 */
234static TupleTableSlot *
235ExecTableFunction(PlanState *pstate)
236{
237 TableFunctionState *node = castNode(TableFunctionState, pstate);
238
239 return ExecScan(&node->ss,
240 (ExecScanAccessMtd) TableFunctionNext,
241 (ExecScanRecheckMtd) TableFunctionRecheck);
242}
243
244
245/*

Callers

nothing calls this directly

Calls 1

ExecScanFunction · 0.85

Tested by

no test coverage detected