Skip to content

Commit

Permalink
fix(sqlglot): work with newer versions
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Mar 24, 2023
1 parent bd81a9f commit 6f7302d
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions ibis/expr/sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,6 @@ def convert_join(join, catalog):

left_name = join.name
for right_name, desc in join.joins.items():
if desc['condition']:
left_name = desc['condition'].this.table
left_table = catalog[left_name]
predicate = convert(desc['condition'], catalog=catalog)
catalog[left_name] = left_table.filter(predicate)
continue

left_table = catalog[left_name]
right_table = catalog[right_name]
join_kind = _join_types[desc['side']]
Expand Down

0 comments on commit 6f7302d

Please sign in to comment.