Skip to content

Commit

Permalink
Fix MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
progval committed Jun 13, 2024
1 parent e4a588d commit ed9e576
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parquet/src/file/writer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1469,7 +1469,7 @@ mod tests {
assert_eq!(flushed.len(), idx + 1);
assert_eq!(Some(idx as i16), last_group.ordinal());
assert_eq!(Some(row_group_file_offset as i64), last_group.file_offset());
assert_eq!(flushed[idx], Arc::unwrap_or_clone(last_group));
assert_eq!(&flushed[idx], last_group.as_ref());
}
let file_metadata = file_writer.close().unwrap();

Expand Down

0 comments on commit ed9e576

Please sign in to comment.