---------------------------------------------------------------- * ExecEndUnique * * This shuts down the subplan and frees resources allocated * to this node. * ---------------------------------------------------------------- */
| 167 | * ---------------------------------------------------------------- |
| 168 | */ |
| 169 | void |
| 170 | ExecEndUnique(UniqueState *node) |
| 171 | { |
| 172 | /* clean up tuple table */ |
| 173 | ExecClearTuple(node->ps.ps_ResultTupleSlot); |
| 174 | |
| 175 | ExecFreeExprContext(&node->ps); |
| 176 | |
| 177 | ExecEndNode(outerPlanState(node)); |
| 178 | } |
| 179 | |
| 180 | |
| 181 | void |
no test coverage detected