alamb commented on issue #686: URL: https://github.com/apache/arrow-datafusion/issues/686#issuecomment-1938587587
The timestamp types are still the same as reported in this ticket: ``` ❯ select arrow_typeof(to_timestamp(12345)); +------------------------------------------+ | arrow_typeof(to_timestamp(Int64(12345))) | +------------------------------------------+ | Timestamp(Nanosecond, None) | +------------------------------------------+ 1 row in set. Query took 0.002 seconds. ❯ select arrow_typeof(to_timestamp_micros(12345)); +-------------------------------------------------+ | arrow_typeof(to_timestamp_micros(Int64(12345))) | +-------------------------------------------------+ | Timestamp(Microsecond, None) | +-------------------------------------------------+ 1 row in set. Query took 0.002 seconds. ``` We could definitely make a new set of functions like `to_timestamp_utc` or something that returned a `Timestamp(.., "UTC")`. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
