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

Method getNextTuplesInternal

src/processor/operator/persistent/set.cpp:14–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12}
13
14bool SetNodeProperty::getNextTuplesInternal(ExecutionContext* context) {
15 if (!children[0]->getNextTuple(context)) {
16 return false;
17 }
18 for (auto& executor : executors) {
19 executor->set(context);
20 }
21 return true;
22}
23
24void SetRelProperty::initLocalStateInternal(ResultSet* resultSet, ExecutionContext* context) {
25 for (auto& executor : executors) {

Callers

nothing calls this directly

Calls 2

getNextTupleMethod · 0.80
setMethod · 0.45

Tested by

no test coverage detected