Skip to content

Commit

Permalink
fix(polars): pass coalesce=False to join
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Jun 3, 2024
1 parent bfe44e3 commit f734720
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibis/backends/polars/compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ def join(op, **kw):
elif how == "outer":
how = "full"

joined = left.join(right, on=on, how=how)
joined = left.join(right, on=on, how=how, coalesce=False)

try:
joined = joined.drop(*on)
Expand Down

0 comments on commit f734720

Please sign in to comment.