Skip to content

Commit

Permalink
minor fix for explain internal execution
Browse files Browse the repository at this point in the history
  • Loading branch information
jiashenC committed Nov 1, 2022
1 parent 3421af5 commit baaa916
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eva/executor/explain_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ def exec(self):
def _exec(self, node: AbstractPlan, depth: int):
cur_str = " " * depth * 4 + "|__ " + str(node) + "\n"
for child in node.children:
cur_str += self.exec(child, depth + 1)
cur_str += self._exec(child, depth + 1)
return cur_str

0 comments on commit baaa916

Please sign in to comment.