We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 763cad5 commit 91d6122Copy full SHA for 91d6122
redisgraph/execution_plan.py
@@ -164,7 +164,11 @@ def _create_operation(args):
164
if op_level == level:
165
# if the operation level equal to the current level
166
# set the current operation and move next
167
- current = _create_operation(current_op.split("|"))
+ child = _create_operation(current_op.split("|"))
168
+ if current:
169
+ current = stack.pop()
170
+ current.append_child(child)
171
+ current = child
172
i += 1
173
elif op_level == level + 1:
174
# if the operation is child of the current operation
0 commit comments