| 116 | } |
| 117 | |
| 118 | void |
| 119 | ExecEndCustomScan(CustomScanState *node) |
| 120 | { |
| 121 | Assert(node->methods->EndCustomScan != NULL); |
| 122 | node->methods->EndCustomScan(node); |
| 123 | |
| 124 | /* Free the exprcontext */ |
| 125 | ExecFreeExprContext(&node->ss.ps); |
| 126 | |
| 127 | /* Clean out the tuple table */ |
| 128 | ExecClearTuple(node->ss.ps.ps_ResultTupleSlot); |
| 129 | ExecClearTuple(node->ss.ss_ScanTupleSlot); |
| 130 | } |
| 131 | |
| 132 | void |
| 133 | ExecReScanCustomScan(CustomScanState *node) |
no test coverage detected