-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Is your feature request related to a problem or challenge?
> select to_unixtime(arrow_cast('2020-01-01 00:10:20.123'::timestamp, 'Timestamp(Second, Some("America/New_York"))'));
Execution error: Unsupported data type Timestamp(Second, Some("America/New_York")) for function to_unixtimeDescribe the solution you'd like
No response
Describe alternatives you've considered
No response
Additional context
Timestamp without TZ is supported for to_unixtime
> select to_unixtime(arrow_cast('2020-01-01 00:10:20.123'::timestamp, 'Timestamp(Second, None)'));
+------------------------------------------------------------------------------------------+
| to_unixtime(arrow_cast(Utf8("2020-01-01 00:10:20.123"),Utf8("Timestamp(Second, None)"))) |
+------------------------------------------------------------------------------------------+
| 1577837420 |
+------------------------------------------------------------------------------------------+Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request