alamb opened a new issue, #3859: URL: https://github.com/apache/arrow-rs/issues/3859
**Describe the bug** https://github.com/apache/arrow-rs/pull/3801 introduced a regression. Prior to arrow 34 the following timestamp could be parsed: ``` 1969-01-01T00:00:00.1' ``` However, after the upgrade it will generate a parse error. This can be worked around by padding the precision to be a whole number of seconds, microseconds, milliseconds, or nanoseconds. For example ``` 1969-01-01T00:00:00.100' ``` **To Reproduce** Try to parse this as a timestamp: ``` 1969-01-01T00:00:00.1' ``` **Expected behavior** It should be parsed correctly **Additional context** Found during DataFusion upgrade: https://github.com/apache/arrow-datafusion/pull/5441 -- 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]
