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

Function ExecReScanUnique

src/backend/executor/nodeUnique.c:181–193  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

179
180
181void
182ExecReScanUnique(UniqueState *node)
183{
184 /* must clear result tuple so first input tuple is returned */
185 ExecClearTuple(node->ps.ps_ResultTupleSlot);
186
187 /*
188 * if chgParam of subnode is not null then plan will be re-scanned by
189 * first ExecProcNode.
190 */
191 if (node->ps.lefttree->chgParam == NULL)
192 ExecReScan(node->ps.lefttree);
193}

Callers 1

ExecReScanFunction · 0.85

Calls 2

ExecClearTupleFunction · 0.85
ExecReScanFunction · 0.85

Tested by

no test coverage detected