etseidl commented on code in PR #8111:
URL: https://github.com/apache/arrow-rs/pull/8111#discussion_r2277736626
##########
parquet/src/file/metadata/reader.rs:
##########
@@ -1102,10 +1218,388 @@ fn get_file_decryptor(
}
}
+// temp structs used to construct RowGroupMetaData
+thrift_struct!(
+struct RowGroup<'a> {
+ 1: required list<'a><ColumnChunk> columns
+ 2: required i64 total_byte_size
+ 3: required i64 num_rows
+ 4: optional list<SortingColumn> sorting_columns
+ 5: optional i64 file_offset
+ // we don't expose total_compressed_size so skip
+ //6: optional i64 total_compressed_size
+ 7: optional i16 ordinal
+}
+);
+
+#[cfg(feature = "encryption")]
Review Comment:
Now (largely) done. There are some exceptions that I've left as TODOs.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]