Skip to content

Commit

Permalink
Revert some changes in 'Fix joins for SA 1.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
aronbierbaum committed Apr 15, 2024
1 parent 5890bf7 commit b7e31d1
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions clickhouse_sqlalchemy/sql/selectable.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,7 @@ def left_array_join(self, *columns):

def join(self, right, onclause=None, isouter=False, full=False, type=None,
strictness=None, distribution=None):
flags = {
'full': full,
'type': type,
'strictness': strictness,
'distribution': distribution
}
return super().join(right, onclause=onclause, isouter=isouter,
full=flags)
return super().join(right, onclause=onclause, isouter=isouter, full=full)


select = Select

0 comments on commit b7e31d1

Please sign in to comment.