tustvold commented on code in PR #5495:
URL: https://github.com/apache/arrow-rs/pull/5495#discussion_r1522298993
##########
object_store/src/memory.rs:
##########
@@ -101,6 +108,12 @@ impl Entry {
struct Storage {
next_etag: usize,
map: BTreeMap<Path, Entry>,
+ uploads: HashMap<usize, PartStorage>,
+}
+
+#[derive(Debug, Default, Clone)]
+struct PartStorage {
+ parts: Vec<Option<Bytes>>,
Review Comment:
I think this is implicit in the contract of MultipartStore
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]