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

Commit 5659b73

Browse files
authored
Merge pull request #835 from datafold/alexey-fix-redshift-schema
Fix redshift schema ingest
2 parents 9d2cd65 + 8bfbce1 commit 5659b73

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)