This is an automated email from the ASF dual-hosted git repository.
tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new 786760a8f2 Flush in multiple_append test (#4868) (#4869)
786760a8f2 is described below
commit 786760a8f26cb3a6ebe0f552dee7d337036913c2
Author: Raphael Taylor-Davies <[email protected]>
AuthorDate: Wed Sep 27 17:52:25 2023 +0100
Flush in multiple_append test (#4868) (#4869)
---
object_store/src/local.rs | 2 ++
1 file changed, 2 insertions(+)
diff --git a/object_store/src/local.rs b/object_store/src/local.rs
index 20eb3c63cc..c625c59fbc 100644
--- a/object_store/src/local.rs
+++ b/object_store/src/local.rs
@@ -1545,11 +1545,13 @@ mod not_wasm_tests {
for d in &data {
writer.write_all(d).await.unwrap();
}
+ writer.flush().await.unwrap();
let mut writer = integration.append(&location).await.unwrap();
for d in &data {
writer.write_all(d).await.unwrap();
}
+ writer.flush().await.unwrap();
let read_data = integration
.get(&location)