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

Function ExecReScanResult

src/backend/executor/nodeResult.c:345–358  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

343}
344
345void
346ExecReScanResult(ResultState *node)
347{
348 node->rs_done = false;
349 node->rs_checkqual = (node->resconstantqual == NULL) ? false : true;
350
351 /*
352 * If chgParam of subnode is not null then plan will be re-scanned by
353 * first ExecProcNode.
354 */
355 if (node->ps.lefttree &&
356 node->ps.lefttree->chgParam == NULL)
357 ExecReScan(node->ps.lefttree);
358}

Callers 1

ExecReScanFunction · 0.85

Calls 1

ExecReScanFunction · 0.85

Tested by

no test coverage detected