Skip to content

Commit

Permalink
fix(mssql): tinyint is actually a utinyint
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed May 18, 2024
1 parent ef0b5df commit 4e4bad0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibis/backends/mssql/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
("NUMERIC(14,3)", dt.Decimal(14, 3)),
("SMALLINT", dt.int16),
("SMALLMONEY", dt.Decimal(10, 4)),
("TINYINT", dt.int8),
("TINYINT", dt.uint8),
# Approximate numerics
("REAL", dt.float32),
("FLOAT", dt.float64),
Expand Down

0 comments on commit 4e4bad0

Please sign in to comment.