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

LAB-271 Redshift Spectrum type mapping #848

Merged
Merged
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
3 changes: 3 additions & 0 deletions data_diff/databases/redshift.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
FractionalType,
DbPath,
TimestampTZ,
Integer,
)
from data_diff.databases.postgresql import (
BaseDialect,
Expand All @@ -31,6 +32,8 @@ class Dialect(PostgresqlDialect):
"double": Float,
"real": Float,
"super": JSON,
"int": Integer, # Redshift Spectrum
"float": Float, # Redshift Spectrum
}
SUPPORTS_INDEXES = False

Expand Down