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

Function ExecSquelchSort

src/backend/executor/nodeSort.c:486–495  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

484}
485
486void
487ExecSquelchSort(SortState *node, bool force)
488{
489 if (!node->ss.ps.squelched && (!node->delayEagerFree || force))
490 {
491 ExecEagerFreeSort(node);
492 node->ss.ps.squelched = true;
493 }
494 ExecSquelchNode(outerPlanState(node), force);
495}
496
497/* ----------------------------------------------------------------
498 * Parallel Query Support

Callers 1

ExecSquelchNodeFunction · 0.85

Calls 2

ExecEagerFreeSortFunction · 0.85
ExecSquelchNodeFunction · 0.85

Tested by

no test coverage detected