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

Function ExecSeqScan

src/backend/executor/nodeSeqscan.c:148–156  ·  view source on GitHub ↗

---------------------------------------------------------------- * ExecSeqScan(node) * * Scans the relation 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

146 * ----------------------------------------------------------------
147 */
148static TupleTableSlot *
149ExecSeqScan(PlanState *pstate)
150{
151 SeqScanState *node = castNode(SeqScanState, pstate);
152
153 return ExecScan(&node->ss,
154 (ExecScanAccessMtd) SeqNext,
155 (ExecScanRecheckMtd) SeqRecheck);
156}
157
158/* ----------------------------------------------------------------
159 * ExecInitSeqScan

Callers

nothing calls this directly

Calls 1

ExecScanFunction · 0.85

Tested by

no test coverage detected