Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: apache/arrow-rs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: dad964206163ea75759ca8a06fbac6a9f04b4a3b
Choose a base ref
..
head repository: apache/arrow-rs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5d52ef7d59c416be05500951c3b106d955e3d348
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 parquet/src/file/writer.rs
2 changes: 1 addition & 1 deletion parquet/src/file/writer.rs
Original file line number Diff line number Diff line change
@@ -824,7 +824,7 @@ impl<W: Write + Send> PageWriter for SerializedPageWriter<'_, W> {
};

let mut page_header = page.to_thrift_header();
// TODO: This is a bit of an ugly hack, we should probably compress the pages
// TODO: This is a bit of an ugly hack, we should probably encrypt the pages
// before they are written so the compressed page size is correct.
page_header.compressed_page_size = page_data.len() as i32;