---------------------------------------------------------------- * ExecEndResult * * frees up storage allocated through C routines * ---------------------------------------------------------------- */
| 324 | * ---------------------------------------------------------------- |
| 325 | */ |
| 326 | void |
| 327 | ExecEndResult(ResultState *node) |
| 328 | { |
| 329 | /* |
| 330 | * Free the exprcontext |
| 331 | */ |
| 332 | ExecFreeExprContext(&node->ps); |
| 333 | |
| 334 | /* |
| 335 | * clean out the tuple table |
| 336 | */ |
| 337 | ExecClearTuple(node->ps.ps_ResultTupleSlot); |
| 338 | |
| 339 | /* |
| 340 | * shut down subplans |
| 341 | */ |
| 342 | ExecEndNode(outerPlanState(node)); |
| 343 | } |
| 344 | |
| 345 | void |
| 346 | ExecReScanResult(ResultState *node) |
no test coverage detected