| 29 | } |
| 30 | |
| 31 | void DeleteNode::initLocalStateInternal(ResultSet* resultSet, ExecutionContext* context) { |
| 32 | for (auto& executor : executors) { |
| 33 | executor->init(resultSet, context); |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | bool DeleteNode::getNextTuplesInternal(ExecutionContext* context) { |
| 38 | if (!children[0]->getNextTuple(context)) { |