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

Commit 8bfbce1

Browse files
committed
Fix redshift schema ingest
1 parent 9d2cd65 commit 8bfbce1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_diff/databases/redshift.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def _normalize_schema_info(self, rows: Iterable[Tuple[Any]]) -> Dict[str, RawCol
181181

182182
schema_dict[col_name] = RawColumnInfo(
183183
column_name=col_name,
184-
data_type=col_name,
184+
data_type=base_type,
185185
datetime_precision=None,
186186
numeric_precision=precision,
187187
numeric_scale=scale,

0 commit comments

Comments
 (0)