You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "viirya (via GitHub)" <gi...@apache.org> on 2023/05/05 16:38:41 UTC

[GitHub] [arrow-rs] viirya commented on a diff in pull request #4176: feat: add compression info to print_column_chunk_metadata()

viirya commented on code in PR #4176:
URL: https://github.com/apache/arrow-rs/pull/4176#discussion_r1186295862


##########
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());

Review Comment:
   Use lower-case to have consistent style with other info:
   
   ```suggestion
       writeln!(out, "compression: {}", cc_metadata.compression());
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org