yiguolei commented on code in PR #63389:
URL: https://github.com/apache/doris/pull/63389#discussion_r3458134463
##########
be/src/format/parquet/vparquet_reader.cpp:
##########
@@ -1266,6 +1316,85 @@ Status ParquetReader::_process_page_index_filter(
}
RowRanges::ranges_intersection(*candidate_row_ranges, tmp_row_range,
candidate_row_ranges);
}
+ bool filtered_row_group_by_expr_zonemap = false;
+ RETURN_IF_ERROR(_process_expr_zonemap_page_filter(&cached_page_index,
candidate_row_ranges,
+
&filtered_row_group_by_expr_zonemap));
+ if (filtered_row_group_by_expr_zonemap) {
+ ++_reader_statistics.filtered_row_groups_by_expr_zonemap;
+ }
+ return Status::OK();
+}
+
+Status ParquetReader::_process_expr_zonemap_page_filter(
Review Comment:
这些代码都得有单测
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]