feat(integrations/parquet): upgrade arrow-rs to 58.0.0#7250
Merged
asukaminato0721 merged 2 commits intoapache:mainfrom Mar 20, 2026
Merged
feat(integrations/parquet): upgrade arrow-rs to 58.0.0#7250asukaminato0721 merged 2 commits intoapache:mainfrom
asukaminato0721 merged 2 commits intoapache:mainfrom
Conversation
Update AsyncFileReader impl to the new API: get_metadata now accepts ArrowReaderOptions, and ranges use u64 instead of usize throughout, removing the need for manual casts.
tisonkun
approved these changes
Mar 18, 2026
Member
tisonkun
left a comment
There was a problem hiding this comment.
LGTM.
Would you fix the code-format CI issue?
Contributor
Author
|
Thanks for the review @tisonkun 😄 I fixed it. |
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.
Which issue does this PR close?
Closes #7249
Rationale for this change
I would like to use both
parquet_opendaland the latest version ofarrow-rsin a project I maintain. Currently this is blocked by the pinned dependency ofparquet_opendalonparquet = "54.2".What changes are included in this PR?
Update
AsyncFileReaderimpl to the new API:get_metadatanow acceptsArrowReaderOptions, and ranges useu64instead ofusizethroughout, removing the need for manual casts.Are there any user-facing changes?
No