---------------------------------------------------------------- * ExecEndProjectSet * * frees up storage allocated through C routines * ---------------------------------------------------------------- */
| 318 | * ---------------------------------------------------------------- |
| 319 | */ |
| 320 | void |
| 321 | ExecEndProjectSet(ProjectSetState *node) |
| 322 | { |
| 323 | /* |
| 324 | * Free the exprcontext |
| 325 | */ |
| 326 | ExecFreeExprContext(&node->ps); |
| 327 | |
| 328 | /* |
| 329 | * clean out the tuple table |
| 330 | */ |
| 331 | ExecClearTuple(node->ps.ps_ResultTupleSlot); |
| 332 | |
| 333 | /* |
| 334 | * shut down subplans |
| 335 | */ |
| 336 | ExecEndNode(outerPlanState(node)); |
| 337 | } |
| 338 | |
| 339 | void |
| 340 | ExecReScanProjectSet(ProjectSetState *node) |
no test coverage detected