Weijun-H commented on code in PR #7730:
URL: https://github.com/apache/arrow-datafusion/pull/7730#discussion_r1343950699
##########
datafusion/core/src/datasource/physical_plan/parquet/page_filter.rs:
##########
@@ -147,17 +147,19 @@ impl PagePruningPredicate {
let file_offset_indexes = file_metadata.offset_index();
let file_page_indexes = file_metadata.column_index();
- let (file_offset_indexes, file_page_indexes) =
- match (file_offset_indexes, file_page_indexes) {
- (Some(o), Some(i)) => (o, i),
- _ => {
- trace!(
- "skip page pruning due to lack of indexes. Have offset: {}
file: {}",
+ let (file_offset_indexes, file_page_indexes) = match (
+ file_offset_indexes,
+ file_page_indexes,
+ ) {
+ (Some(o), Some(i)) => (o, i),
+ _ => {
+ trace!(
+ "skip page pruning due to lack of indexes. Have offset: {}
column index: {}",
Review Comment:
```suggestion
"skip page pruning due to lack of indexes. Have offset:
{}, column index: {}",
```
--
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]