This is an automated email from the ASF dual-hosted git repository.
viirya pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new 0e9bdd651 feat: add compression info to print_column_chunk_metadata()
(#4176)
0e9bdd651 is described below
commit 0e9bdd651fffff155f6c38be692e4242d7f58577
Author: SteveLauC <[email protected]>
AuthorDate: Sat May 6 08:29:55 2023 +0800
feat: add compression info to print_column_chunk_metadata() (#4176)
---
parquet/src/schema/printer.rs | 1 +
1 file changed, 1 insertion(+)
diff --git a/parquet/src/schema/printer.rs b/parquet/src/schema/printer.rs
index d90dc423c..ad4acb0cb 100644
--- a/parquet/src/schema/printer.rs
+++ b/parquet/src/schema/printer.rs
@@ -137,6 +137,7 @@ fn print_column_chunk_metadata(
writeln!(out, "file path: {file_path_str}");
writeln!(out, "file offset: {}", cc_metadata.file_offset());
writeln!(out, "num of values: {}", cc_metadata.num_values());
+ writeln!(out, "compression: {}", cc_metadata.compression());
writeln!(
out,
"total compressed size (in bytes): {}",