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

Commit 7ea8da7

Browse files
authored
Merge pull request #737 from datafold/issue_733
AbstractMixin_MD5->Mixin_MD5 to override pg version
2 parents fd54d2d + d869f59 commit 7ea8da7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

data_diff/databases/redshift.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,12 @@
1919
TIMESTAMP_PRECISION_POS,
2020
PostgresqlDialect,
2121
Mixin_NormalizeValue,
22+
Mixin_MD5,
2223
)
2324

2425

2526
@attrs.define(frozen=False)
26-
class Mixin_MD5(AbstractMixin_MD5):
27+
class Mixin_MD5(Mixin_MD5):
2728
def md5_as_int(self, s: str) -> str:
2829
return f"strtol(substring(md5({s}), {1+MD5_HEXDIGITS-CHECKSUM_HEXDIGITS}), 16)::decimal(38)"
2930

0 commit comments

Comments
 (0)