---------------------------------------------------------------- * ExecEndSetOp * * This shuts down the subplan and frees resources allocated * to this node. * ---------------------------------------------------------------- */
| 580 | * ---------------------------------------------------------------- |
| 581 | */ |
| 582 | void |
| 583 | ExecEndSetOp(SetOpState *node) |
| 584 | { |
| 585 | /* clean up tuple table */ |
| 586 | ExecClearTuple(node->ps.ps_ResultTupleSlot); |
| 587 | |
| 588 | /* free subsidiary stuff including hashtable */ |
| 589 | if (node->tableContext) |
| 590 | MemoryContextDelete(node->tableContext); |
| 591 | ExecFreeExprContext(&node->ps); |
| 592 | |
| 593 | ExecEndNode(outerPlanState(node)); |
| 594 | } |
| 595 | |
| 596 | |
| 597 | void |
no test coverage detected