MCPcopy Create free account
hub / github.com/apache/cloudberry / ExecEndUnique

Function ExecEndUnique

src/backend/executor/nodeUnique.c:169–178  ·  view source on GitHub ↗

---------------------------------------------------------------- * ExecEndUnique * * This shuts down the subplan and frees resources allocated * to this node. * ---------------------------------------------------------------- */

Source from the content-addressed store, hash-verified

167 * ----------------------------------------------------------------
168 */
169void
170ExecEndUnique(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
181void

Callers 1

ExecEndNodeFunction · 0.85

Calls 3

ExecClearTupleFunction · 0.85
ExecFreeExprContextFunction · 0.85
ExecEndNodeFunction · 0.85

Tested by

no test coverage detected