Skip to content

Commit 1827d04

Browse files
mzabaluevrluvaton
andcommitted
test: remove page stats printout
Moved the printout to an assertion failure message below. Co-authored-by: Raz Luvaton <16746759+rluvaton@users.noreply.github.com>
1 parent 8ba290b commit 1827d04

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • parquet/src/arrow/arrow_writer

parquet/src/arrow/arrow_writer/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2626,11 +2626,11 @@ mod tests {
26262626
// check page encoding stats, should be one dict page, one dict encoded page, and 5
26272627
// plain encoded pages
26282628
let stats = column[0].page_encoding_stats().unwrap();
2629-
println!("pes: {stats:?}");
26302629
assert!(
26312630
stats
26322631
.iter()
2633-
.any(|s| s.page_type == PageType::DICTIONARY_PAGE)
2632+
.any(|s| s.page_type == PageType::DICTIONARY_PAGE),
2633+
"stats are {stats:?}"
26342634
);
26352635
let num_dict_encoded: i32 = stats
26362636
.iter()

0 commit comments

Comments
 (0)