Skip to content

Commit

Permalink
fix(mssql): always pass port to pyodbc in host string (#9656)
Browse files Browse the repository at this point in the history
  • Loading branch information
gforsyth authored Jul 22, 2024
1 parent f019b67 commit 2e3fd9a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ibis/backends/mssql/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,7 @@ def do_connect(

con = pyodbc.connect(
user=user,
server=host,
port=port,
server=f"{host},{port}",
password=password,
database=database,
driver=driver,
Expand Down

0 comments on commit 2e3fd9a

Please sign in to comment.