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

Function ExecWorkTableScan

src/backend/executor/nodeWorktablescan.c:86–94  ·  view source on GitHub ↗

---------------------------------------------------------------- * ExecWorkTableScan(node) * * Scans the worktable 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

84 * ----------------------------------------------------------------
85 */
86static TupleTableSlot *
87ExecWorkTableScan(PlanState *pstate)
88{
89 WorkTableScanState *node = castNode(WorkTableScanState, pstate);
90
91 return ExecScan(&node->ss,
92 (ExecScanAccessMtd) WorkTableScanNext,
93 (ExecScanRecheckMtd) WorkTableScanRecheck);
94}
95
96
97/* ----------------------------------------------------------------

Callers

nothing calls this directly

Calls 1

ExecScanFunction · 0.85

Tested by

no test coverage detected