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

Commit 53f5ddf

Browse files
committed
Small fix
1 parent 8afd597 commit 53f5ddf

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

data_diff/databases/base.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,7 @@ def _refine_coltypes(self, table_path: DbPath, col_dict: Dict[str, ColType]):
221221
else:
222222
assert col_name in col_dict
223223
col_dict[col_name] = String_UUID()
224+
continue
224225

225226
alphanum_samples = [s for s in samples if s and String_Alphanum.test_value(s)]
226227
if alphanum_samples:
@@ -238,6 +239,7 @@ def _refine_coltypes(self, table_path: DbPath, col_dict: Dict[str, ColType]):
238239
else:
239240
(length,) = lens
240241
col_dict[col_name] = String_Alphanum(length=length)
242+
continue
241243

242244
# @lru_cache()
243245
# def get_table_schema(self, path: DbPath) -> Dict[str, ColType]:

0 commit comments

Comments
 (0)