@@ -52,12 +52,6 @@ pub struct ParquetFileMetrics {
5252 pub row_groups_pruned_statistics : PruningMetrics ,
5353 /// Number of row groups whose bloom filters were checked and matched (not pruned)
5454 pub row_groups_matched_bloom_filter : Count ,
55- /// Number of row groups pruned due to limit pruning.
56- pub limit_pruned_row_groups : Count ,
57- /// Number of row groups whose statistics were checked and fully matched
58- pub row_groups_fully_matched_statistics : Count ,
59- /// Number of row groups whose statistics were checked and matched (not pruned)
60- pub row_groups_matched_statistics : Count ,
6155 /// Total number of bytes scanned
6256 pub bytes_scanned : Count ,
6357 /// Total rows filtered out by predicates pushed into parquet scan
@@ -174,8 +168,6 @@ impl ParquetFileMetrics {
174168 predicate_evaluation_errors,
175169 row_groups_matched_bloom_filter,
176170 row_groups_pruned_bloom_filter,
177- row_groups_fully_matched_statistics,
178- row_groups_matched_statistics,
179171 row_groups_pruned_statistics,
180172 limit_pruned_row_groups,
181173 bytes_scanned,
0 commit comments