alamb commented on a change in pull request #1130:
URL: https://github.com/apache/arrow-rs/pull/1130#discussion_r778014042
##########
File path: parquet/src/arrow/arrow_array_reader.rs
##########
@@ -420,6 +456,24 @@ impl<'a, C: ArrayConverter + 'a> ArrowArrayReader<'a, C> {
}
}
+ fn count_def_level_values(
+ column_desc: &ColumnDescriptor,
+ level_decoder: crate::encodings::levels::LevelDecoder,
+ num_values: usize,
+ ) -> Result<usize> {
+ let mut def_level_decoder = LevelValueDecoder::new(level_decoder);
+ let def_level_array =
Review comment:
makes sense -- thank you for running the numbers
--
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]