etseidl commented on code in PR #8593:
URL: https://github.com/apache/arrow-rs/pull/8593#discussion_r2425121889
##########
parquet/benches/metadata.rs:
##########
@@ -64,13 +65,15 @@ fn encoded_meta() -> Vec<u8> {
})
}
- let stats = parquet::format::Statistics {
+ let max_value_binding = vec![rng.random(); 8];
Review Comment:
Some combination of `RowGroupMetaDataBuilder`, `ColumnChunkMetaDataBuilder`
and `ParquetMetaDataBuilder`, along with `ParquetMetaDataWriter` should work
for building this test case. The trick will be getting the schema built, but
since this is a flat schema it shouldn't be *too* hard to get a `Type` built
and then pass that to `SchemaDescriptor::new`.
--
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]