etseidl commented on code in PR #8574:
URL: https://github.com/apache/arrow-rs/pull/8574#discussion_r2414736817
##########
parquet/src/file/metadata/thrift_gen.rs:
##########
@@ -93,6 +92,21 @@ pub(crate) struct SchemaElement<'a> {
}
);
+thrift_struct!(
+pub(crate) struct Statistics<'a> {
+ 1: optional binary<'a> max;
+ 2: optional binary<'a> min;
+ 3: optional i64 null_count;
+ 4: optional i64 distinct_count;
+ 5: optional binary<'a> max_value;
+ 6: optional binary<'a> min_value;
+ 7: optional bool is_max_value_exact;
+ 8: optional bool is_min_value_exact;
+}
+);
+
+// TODO(ets): move a lot of the encryption stuff to its own module
Review Comment:
There is a follow-on PR ready to do just this.
--
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]