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

Function ExecEndSort

src/backend/executor/nodeSort.c:331–346  ·  view source on GitHub ↗

---------------------------------------------------------------- * ExecEndSort(node) * ---------------------------------------------------------------- */

Source from the content-addressed store, hash-verified

329 * ----------------------------------------------------------------
330 */
331void
332ExecEndSort(SortState *node)
333{
334 SO1_printf("ExecEndSort: %s\n",
335 "shutting down sort node");
336
337 ExecEagerFreeSort(node);
338
339 /*
340 * shut down the subplan
341 */
342 ExecEndNode(outerPlanState(node));
343
344 SO1_printf("ExecEndSort: %s\n",
345 "sort node shutdown");
346}
347
348/* ----------------------------------------------------------------
349 * ExecSortMarkPos

Callers 1

ExecEndNodeFunction · 0.85

Calls 2

ExecEagerFreeSortFunction · 0.85
ExecEndNodeFunction · 0.85

Tested by

no test coverage detected