Skip to content

Commit

Permalink
Fix(mssql): change mssql conn_properties type to List (#3403)
Browse files Browse the repository at this point in the history
  • Loading branch information
treysp authored Nov 21, 2024
1 parent f756144 commit 962f7d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlmesh/core/config/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -1211,7 +1211,7 @@ class MSSQLConnectionConfig(ConnectionConfig):
charset: t.Optional[str] = "UTF-8"
appname: t.Optional[str] = None
port: t.Optional[int] = 1433
conn_properties: t.Optional[t.Union[t.Iterable[str], str]] = None
conn_properties: t.Optional[t.Union[t.List[str], str]] = None
autocommit: t.Optional[bool] = False
tds_version: t.Optional[str] = None

Expand Down

0 comments on commit 962f7d2

Please sign in to comment.