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

Commit 8cfcb9b

Browse files
authored
Revert "mssql normalize_uuid"
1 parent 40bdcf7 commit 8cfcb9b

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

data_diff/databases/mssql.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
)
1414
from data_diff.abcs.database_types import (
1515
JSON,
16-
ColType_UUID,
1716
NumericType,
1817
Timestamp,
1918
TimestampTZ,
@@ -155,9 +154,6 @@ def md5_as_int(self, s: str) -> str:
155154
def md5_as_hex(self, s: str) -> str:
156155
return f"HashBytes('MD5', {s})"
157156

158-
def normalize_uuid(self, value: str, coltype: ColType_UUID) -> str:
159-
return f"TRIM(CAST({value} AS char)) AS {value}"
160-
161157

162158
@attrs.define(frozen=False, init=False, kw_only=True)
163159
class MsSQL(ThreadedDatabase):

0 commit comments

Comments
 (0)