feat: add Extensions to object store PutOptions#7213
Merged
crepererum merged 1 commit intoapache:mainfrom Feb 27, 2025
Merged
Conversation
crepererum
commented
Feb 27, 2025
| ) -> Result<PutResult> { | ||
| let PutOptions { | ||
| mode, | ||
| // not supported by GCP |
tustvold
approved these changes
Feb 27, 2025
Contributor
tustvold
left a comment
There was a problem hiding this comment.
FWIW there is also PutMultipartOpts
Contributor
Author
Ah, that struct doesn't end in Will file an extra PR for that. |
Contributor
Author
Done in #7214. |
alamb
pushed a commit
to alamb/arrow-rs
that referenced
this pull request
Mar 20, 2025
Follow-up to apache#7170.
crepererum
added a commit
to crepererum/arrow-rs-object-store
that referenced
this pull request
Nov 20, 2025
Change the `ObjectStore` core trait to have a single, extensible copy operation. This helps apache#385 and apache#297. Also adds extensions similar to apache/arrow-rs#7170 and apache/arrow-rs#7213 . Closes apache#116.
alamb
pushed a commit
to apache/arrow-rs-object-store
that referenced
this pull request
Nov 25, 2025
Change the `ObjectStore` core trait to have a single, extensible copy operation. This helps #385 and #297. Also adds extensions similar to apache/arrow-rs#7170 and apache/arrow-rs#7213 . Closes #116.
crepererum
added a commit
to crepererum/arrow-rs-object-store
that referenced
this pull request
Nov 26, 2025
Change the `ObjectStore` core trait to have a single, extensible rename operation. This helps apache#385 and apache#297. Also adds extensions similar to apache/arrow-rs#7170 and apache/arrow-rs#7213 . Also see apache#548 -- which did something similar for `copy`.
crepererum
added a commit
to crepererum/arrow-rs-object-store
that referenced
this pull request
Nov 26, 2025
Change the `ObjectStore` core trait to have a single, extensible rename operation. This helps apache#385 and apache#297. Also adds extensions similar to apache/arrow-rs#7170 and apache/arrow-rs#7213 . Also see apache#548 -- which did something similar for `copy`.
crepererum
added a commit
to apache/arrow-rs-object-store
that referenced
this pull request
Dec 4, 2025
Change the `ObjectStore` core trait to have a single, extensible rename operation. This helps #385 and #297. Also adds extensions similar to apache/arrow-rs#7170 and apache/arrow-rs#7213 . Also see #548 -- which did something similar for `copy`.
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?
-
Rationale for this change
Follow-up to #7170.
See #7170 (comment) .
What changes are included in this PR?
PutOptions::extensions.Are there any user-facing changes?
Breaking: New field.