Skip to content

Commit

Permalink
chore: fix mssql argument passing to super call
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Mar 15, 2023
1 parent 02eee6b commit 9a52ea4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibis/backends/mssql/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,5 +73,5 @@ def _table_from_schema(
temp: bool = False,
) -> sa.Table:
return super()._table_from_schema(
temp * "#" + name, schema, database, temp=False
temp * "#" + name, schema=schema, database=database, temp=False
)

0 comments on commit 9a52ea4

Please sign in to comment.