Is your feature request related to a problem? Please describe.
We have a UDF that takes timestamp strings -> parses and converts between timezones -> stores as strings, preserving nanosecond precision. While this can be done manually using cuDF, it would be great to leverage CastStrings.toTimestamp in the JNI out of the box. However, toTimestamp currently only supports microsecond precision.
Describe the solution you'd like
Add nanosecond support to CastStrings.toTimestamp and dependent methods.
Describe alternatives you've considered
Parsing manually using cuDF is doable, but verbose and not as maintainable.