---------------------------------------------------------------- * 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. * ---------------------------------------------------------------- */
| 146 | * ---------------------------------------------------------------- |
| 147 | */ |
| 148 | static TupleTableSlot * |
| 149 | ExecSeqScan(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 |
nothing calls this directly
no test coverage detected