| 12 | } |
| 13 | |
| 14 | bool 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 | |
| 24 | void SetRelProperty::initLocalStateInternal(ResultSet* resultSet, ExecutionContext* context) { |
| 25 | for (auto& executor : executors) { |
nothing calls this directly
no test coverage detected