| 6 | namespace processor { |
| 7 | |
| 8 | void SetNodeProperty::initLocalStateInternal(ResultSet* resultSet, ExecutionContext* context) { |
| 9 | for (auto& executor : executors) { |
| 10 | executor->init(resultSet, context); |
| 11 | } |
| 12 | } |
| 13 | |
| 14 | bool SetNodeProperty::getNextTuplesInternal(ExecutionContext* context) { |
| 15 | if (!children[0]->getNextTuple(context)) { |