Can't cast from timestamp array to string array #587
Labels
enhancement
Any new improvement worthy of a entry in the changelog
good first issue
Good for newcomers
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
I am trying to work with timestamps -- specifically converting data from csv, etc to timestamps
Describe the solution you'd like
I would like the
cast
kernel to support convertingTimestampNanosecondArray
(and the other date / time / timestamp related types) toStringArray
I would like the following Rust code to compile and produce a String array with value
"1970-01-01 00:00:00.000000100"
:Reproducer:
Additional context
The code exists in arrow to convert strings to timestamps (
string_to_timestamp_nanos
) and timestamps to strings, but the code is not connected to the cast kernelThus, it is not easy to convert an array of timestamps to an array of strings
The text was updated successfully, but these errors were encountered: