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

Function ExecEndSequence

src/backend/executor/nodeSequence.c:125–134  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

123}
124
125void
126ExecEndSequence(SequenceState *node)
127{
128 /* shutdown subplans */
129 for(int no = 0; no < node->numSubplans; no++)
130 {
131 Assert(node->subplans[no] != NULL);
132 ExecEndNode(node->subplans[no]);
133 }
134}
135
136void
137ExecReScanSequence(SequenceState *node)

Callers 1

ExecEndNodeFunction · 0.85

Calls 1

ExecEndNodeFunction · 0.85

Tested by

no test coverage detected