This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/master by this push:
new 61935aa ARROW-12250: [Rust] [Parquet] Fix failing arrow_writer test
61935aa is described below
commit 61935aa37a7d24c03672fefd9af82ba13a2e7ae9
Author: Neville Dipale <[email protected]>
AuthorDate: Thu Apr 15 06:41:41 2021 -0400
ARROW-12250: [Rust] [Parquet] Fix failing arrow_writer test
A copy-paste mistake when creating the FSB test.
The sporadic failure happens if two tests try to write to the same file.
Closes #10043 from nevi-me/ARROW-12250
Authored-by: Neville Dipale <[email protected]>
Signed-off-by: Andrew Lamb <[email protected]>
---
rust/parquet/src/arrow/arrow_writer.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rust/parquet/src/arrow/arrow_writer.rs
b/rust/parquet/src/arrow/arrow_writer.rs
index 5716aae..e8eaf33 100644
--- a/rust/parquet/src/arrow/arrow_writer.rs
+++ b/rust/parquet/src/arrow/arrow_writer.rs
@@ -1237,7 +1237,7 @@ mod tests {
builder.append_value(b"1112").unwrap();
let array = Arc::new(builder.finish());
- one_column_roundtrip("timestamp_millisecond_single_column", array,
true);
+ one_column_roundtrip("fixed_size_binary_single_column", array, true);
}
#[test]