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

Function ExecReScanAssertOp

src/backend/executor/nodeAssertOp.c:133–143  ·  view source on GitHub ↗

Rescan AssertOp */

Source from the content-addressed store, hash-verified

131
132/* Rescan AssertOp */
133void
134ExecReScanAssertOp(AssertOpState *node)
135{
136 /*
137 * If chgParam of subnode is not null then plan will be re-scanned by
138 * first ExecProcNode.
139 */
140 if (node->ps.lefttree &&
141 node->ps.lefttree->chgParam == NULL)
142 ExecReScan(node->ps.lefttree);
143}
144
145/* Release Resources Requested by AssertOp node. */
146void

Callers 1

ExecReScanFunction · 0.85

Calls 1

ExecReScanFunction · 0.85

Tested by

no test coverage detected