Describe the bug
#3801 introduced a regression. Prior to arrow 34 the following timestamp could be parsed:
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
To Reproduce
Try to parse this as a timestamp:
Expected behavior
It should be parsed correctly
Additional context
Found during DataFusion upgrade: apache/datafusion#5441