Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion data_diff/databases/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1069,7 +1069,7 @@ def _refine_coltypes(
)
else:
assert col_name in col_dict
col_dict[col_name] = String_UUID()
col_dict[col_name] = String_VaryingAlphanum()
continue

if self.SUPPORTS_ALPHANUMS: # Anything but MySQL (so far)
Expand Down
2 changes: 1 addition & 1 deletion data_diff/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def as_insensitive(self):

# -- Alphanumerics --

alphanums = " -" + string.digits + string.ascii_uppercase + "_" + string.ascii_lowercase
alphanums = string.digits + string.ascii_lowercase + string.ascii_uppercase


@attrs.define(frozen=True)
Expand Down