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
{{ message }}
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.
I have a dataset I need to transfer that includes the Postgres interval dataype, this doesn't appear to be currently supported.
I would like the interval type to be transfered as though it's a string/text type. My target (Redshift) can't store the interval type but can store the text and cast it back to interval.
My naive guess is this would 'just' be a change to discovery_utils.py
if data_type == 'interval':
schema['type'] = nullable_column('string', col.is_primary_key)
return schema
The text was updated successfully, but these errors were encountered:
I have a dataset I need to transfer that includes the Postgres interval dataype, this doesn't appear to be currently supported.
I would like the interval type to be transfered as though it's a string/text type. My target (Redshift) can't store the interval type but can store the text and cast it back to interval.
My naive guess is this would 'just' be a change to discovery_utils.py
The text was updated successfully, but these errors were encountered: