* ExecEndDynamicSeqScan * Ends the scanning of this DynamicSeqScanNode and frees * up all the resources. */
| 276 | * up all the resources. |
| 277 | */ |
| 278 | void |
| 279 | ExecEndDynamicSeqScan(DynamicSeqScanState *node) |
| 280 | { |
| 281 | DynamicSeqScanEndCurrentScan(node); |
| 282 | |
| 283 | if (node->ss.ps.ps_ResultTupleSlot) |
| 284 | ExecClearTuple(node->ss.ps.ps_ResultTupleSlot); |
| 285 | } |
| 286 | |
| 287 | /* |
| 288 | * ExecReScanDynamicSeqScan |
no test coverage detected