LorrensP-2158466 commented on code in PR #11054: URL: https://github.com/apache/datafusion/pull/11054#discussion_r1649435311
########## datafusion/core/src/datasource/physical_plan/parquet/statistics.rs: ########## @@ -613,6 +625,14 @@ macro_rules! get_data_page_statistics { ($stat_type_prefix: ident, $data_type: ident, $iterator: ident) => { paste! { match $data_type { + Some(DataType::Boolean) => Ok(Arc::new( + BooleanArray::from_iter( + [<$stat_type_prefix BooleanDataPageStatsIterator>]::new($iterator) + .flatten() + .collect::<Vec<_>>() Review Comment: that's true, thanks! -- 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-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org