---------------------------------------------------------------- * ExecEndGatherMerge * * frees any storage allocated through C routines. * ---------------------------------------------------------------- */
| 286 | * ---------------------------------------------------------------- |
| 287 | */ |
| 288 | void |
| 289 | ExecEndGatherMerge(GatherMergeState *node) |
| 290 | { |
| 291 | ExecEndNode(outerPlanState(node)); /* let children clean up first */ |
| 292 | ExecShutdownGatherMerge(node); |
| 293 | ExecFreeExprContext(&node->ps); |
| 294 | if (node->ps.ps_ResultTupleSlot) |
| 295 | ExecClearTuple(node->ps.ps_ResultTupleSlot); |
| 296 | } |
| 297 | |
| 298 | /* ---------------------------------------------------------------- |
| 299 | * ExecShutdownGatherMerge |
no test coverage detected