Skip to content

Commit

Permalink
remove use of deprecated function calls
Browse files Browse the repository at this point in the history
  • Loading branch information
pacman82 committed Sep 9, 2024
1 parent e0777ff commit e8ac458
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4027,8 +4027,8 @@ fn write_statistics_for_text_columns() {
.column(0)
.statistics()
.unwrap();
assert_eq!("aaa", str::from_utf8(stats.min_bytes()).unwrap());
assert_eq!("zzz", str::from_utf8(stats.max_bytes()).unwrap());
assert_eq!("aaa", str::from_utf8(stats.min_bytes_opt().unwrap()).unwrap());
assert_eq!("zzz", str::from_utf8(stats.max_bytes_opt().unwrap()).unwrap());
}

/// This did not work in earlier versions there we set the batch write size of the parquet writer to
Expand Down

0 comments on commit e8ac458

Please sign in to comment.