Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions parquet/src/arrow/arrow_writer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4906,10 +4906,10 @@ mod tests {

#[test]
fn test_arrow_writer_granular_mode_roundtrip() {
// Granular mode subdivides chunks and writes more pages than
// `main`. Make sure the data we write back is bit-identical to
// what went in — page-count assertions elsewhere only prove
// pages were cut, not that the encoded data is correct.
// Granular mode subdivides chunks and writes more pages than the
// default batched path. Make sure the data we write back is
// bit-identical to what went in — page-count assertions elsewhere
// only prove pages were cut, not that the encoded data is correct.
//
// Mix value sizes so that the cumulative-byte-budget cutoff
// lands mid-chunk, exercising both batched and granular paths
Expand Down
Loading