fixed regression.

This commit is contained in:
2022-10-01 15:52:34 +08:00
parent 98890884da
commit e5ba3f63d6
3 changed files with 16 additions and 11 deletions
+1 -1
View File
@@ -220,7 +220,7 @@ class expr(ast_node):
if (is_joincond and len(self.children) == 2
and all([c.is_ColExpr for c in self.children])) :
self.root.join_conditions.append(
self.children[0].raw_col, self.children[1].raw_col
(self.children[0].raw_col, self.children[1].raw_col)
)
if type(node) is str: