We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff9ada0 commit b701695Copy full SHA for b701695
parquet/tests/encryption/encryption_async.rs
@@ -775,6 +775,7 @@ async fn test_multi_threaded_encrypted_writing() {
775
// LOW-LEVEL API: Use low level API to write into a file using multiple threads
776
777
// Get column writers
778
+ #[allow(deprecated)]
779
let col_writers = writer.get_column_writers().unwrap();
780
let num_columns = col_writers.len();
781
@@ -797,7 +798,8 @@ async fn test_multi_threaded_encrypted_writing() {
797
798
}
799
800
// Append the finalized row group to the SerializedFileWriter
- assert!(writer.append_row_group(finalized_rg).is_ok());
801
802
+ writer.append_row_group(finalized_rg).unwrap();
803
804
// HIGH-LEVEL API: Write RecordBatches into the file using ArrowWriter
805
0 commit comments