Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit 7865357

Browse files
committed
"date" should by type Date
1 parent 2cc7f93 commit 7865357

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

data_diff/databases/mssql.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
)
1414
from data_diff.abcs.database_types import (
1515
JSON,
16+
Date,
1617
NumericType,
1718
Timestamp,
1819
TimestampTZ,
@@ -46,7 +47,7 @@ class Dialect(BaseDialect):
4647
"datetime": Timestamp,
4748
"datetime2": Timestamp,
4849
"smalldatetime": Timestamp,
49-
"date": Timestamp,
50+
"date": Date,
5051
# Numbers
5152
"float": Float,
5253
"real": Float,

0 commit comments

Comments
 (0)