[arrow] Normalize timezone strings for arrow-rust compatibility#7705
Merged
JingsongLi merged 3 commits intoApr 29, 2026
Merged
Conversation
…he#7704) ZoneId.systemDefault().toString() can produce GMT-prefix timezone strings like GMT-10:00 which arrow-rust cannot parse. Using normalized() converts these to standard formats that arrow-rust accepts: GMT-prefix offsets become UTC offsets (-10:00), GMT/UTC become Z, and IANA names pass through unchanged.
Contributor
Author
|
@plusplusjiajia @JingsongLi Please have a look |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes #7704.
ZoneId.systemDefault().toString()can produce GMT-prefix timezone strings likeGMT-10:00when the JVM timezone is set to a GMT-prefix offset. Arrow-rust doesn't recognize theGMTprefix and rejects these strings.normalized()converts them to formats arrow-rust accepts:GMT-10:00becomes-10:00GMT+05:30becomes+05:30UTC/GMTbecomesZAmerica/New_Yorkpass through unchangedThis was discovered while investigating #6648. The CI randomizes
-Duser.timezoneand hitGMT+5:00, which triggered a crash in the Lance native writer.