MCPcopy Create free account
hub / github.com/LadybugDB/ladybug / getNextTuplesInternal

Method getNextTuplesInternal

src/processor/operator/persistent/delete.cpp:37–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35}
36
37bool DeleteNode::getNextTuplesInternal(ExecutionContext* context) {
38 if (!children[0]->getNextTuple(context)) {
39 for (auto& executor : executors) {
40 executor->finalize(context);
41 }
42 return false;
43 }
44 for (auto& executor : executors) {
45 executor->delete_(context);
46 }
47 return true;
48}
49
50void DeleteNode::finalizeInternal(ExecutionContext* context) {
51 for (auto& executor : executors) {

Callers

nothing calls this directly

Calls 3

getNextTupleMethod · 0.80
finalizeMethod · 0.45
delete_Method · 0.45

Tested by

no test coverage detected