There was an error while loading. Please reload this page.
1 parent ced76e6 commit 5b7d66bCopy full SHA for 5b7d66b
data_diff/databases/clickhouse.py
@@ -88,7 +88,7 @@ def quote(self, s: str) -> str:
88
89
def md5_to_int(self, s: str) -> str:
90
substr_idx = 1 + MD5_HEXDIGITS - CHECKSUM_HEXDIGITS
91
- return f'reinterpretAsUInt64(reverse(unhex(lowerUTF8(substr(hex(MD5({s})), {substr_idx})))))'
+ return f'reinterpretAsUInt128(reverse(unhex(lowerUTF8(substr(hex(MD5({s})), {substr_idx})))))'
92
93
def to_string(self, s: str) -> str:
94
return f"toString({s})"
0 commit comments