mridulm commented on PR #45942:
URL: https://github.com/apache/spark/pull/45942#issuecomment-2044203113
`Pattern.compile` is operating on a new instance of `Pattern` object - and
so inherits the thread safety of `Pattern`.
It is not clear to me what the issue being observed is, and how th
xiongbo-sjtu opened a new pull request, #45942:
URL: https://github.com/apache/spark/pull/45942
### What changes were proposed in this pull request?
Fix an issue where JavaUtils.timeStringAs fails to parse a legitimate time
string.
### Why are the changes needed?
It's observ