You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Specifying a column type of "timestamp with timezone" should create a column in redshift of the type "timestamptz". See supported datatypes
Instead, it looks like this is getting converted to a regular "timestamp" type in DateTimeTypeRedshift.java/TimestampTypeRedshift.java (I'm guessing redshift timezone support did not exist at the time)
I think we just need to remove these custom datatypes and it should work fine. I have tried this on a fork and as expected the column in redshift is given the type "timestamptz".
Specifying a column type of "timestamp with timezone" should create a column in redshift of the type "timestamptz". See supported datatypes
Instead, it looks like this is getting converted to a regular "timestamp" type in DateTimeTypeRedshift.java/TimestampTypeRedshift.java (I'm guessing redshift timezone support did not exist at the time)
I think we just need to remove these custom datatypes and it should work fine. I have tried this on a fork and as expected the column in redshift is given the type "timestamptz".
Created PR #12 with this change
The text was updated successfully, but these errors were encountered: