Parse timestamps with arbitrary seconds fraction#3858
Parse timestamps with arbitrary seconds fraction#3858tustvold merged 2 commits intoapache:masterfrom
Conversation
|
Filed #3859 to track |
| let cases = [ | ||
| "2020-09-08T13:42:29Z", | ||
| "1969-01-01T00:00:00.1Z", | ||
| "2020-09-08T12:00:12.12345678+00:00", |
There was a problem hiding this comment.
What do you think about covering all of the various precision cases (aka
"2020-09-08T12:00:12+00:00",
"2020-09-08T12:00:12.1+00:00",
"2020-09-08T12:00:12.12+00:00",
"2020-09-08T12:00:12.123+00:00",
"2020-09-08T12:00:12.1234+00:00",
...
"2020-09-08T12:00:12.12345678+00:00",
as there is explicit handling for each of them above?
|
Benchmark runs are scheduled for baseline = 047d699 and contender = 488b7ba. 488b7ba is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
Which issue does this PR close?
Closes #3859
Rationale for this change
Accidental breaking change in #3801
I have confirmed this has no impact on benchmarks
What changes are included in this PR?
Are there any user-facing changes?