| 63 | } |
| 64 | |
| 65 | void Merge::executeOnMatch(ExecutionContext* context) { |
| 66 | for (auto& executor : onMatchNodeSetExecutors) { |
| 67 | executor->set(context); |
| 68 | } |
| 69 | for (auto& executor : onMatchRelSetExecutors) { |
| 70 | executor->set(context); |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | void Merge::executeOnCreatedPattern(PatternCreationInfo& patternCreationInfo, |
| 75 | ExecutionContext* context) { |