Skip to content

Commit

Permalink
fix: Pin TDS version back to 7.0
Browse files Browse the repository at this point in the history
pymssql with TDS 7.3 parses datetime2 as datetime, leading
to a drop in timestamp resolution (100 ns -> ~3 ms). This causes
incorrect frames to occasionally be grabbed from Beholder.
  • Loading branch information
kevinsbarnard committed Nov 30, 2023
1 parent 3eb53d7 commit dd64838
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vars_gridview/lib/sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def connect(server_url: str, user: str, password: str, database: str):
user=user,
password=password,
database=database,
tds_version="7.3",
tds_version="7.0",
)


Expand Down

0 comments on commit dd64838

Please sign in to comment.