Skip to content

Commit 7f25819

Browse files
authored
Fix the doc about row_groups pruning metrics in explain_usage.md (#17846)
1 parent 6c0d1c5 commit 7f25819

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/source/user-guide/explain-usage.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -227,10 +227,10 @@ When predicate pushdown is enabled, `DataSourceExec` with `ParquetSource` gains
227227

228228
- `page_index_rows_matched`: number of rows in pages that were tested by a page index filter, and passed
229229
- `page_index_rows_pruned`: number of rows in pages that were tested by a page index filter, and did not pass
230-
- `row_groups_matched_bloom_filter`: number of rows in row groups that were tested by a Bloom Filter, and passed
231-
- `row_groups_pruned_bloom_filter`: number of rows in row groups that were tested by a Bloom Filter, and did not pass
232-
- `row_groups_matched_statistics`: number of rows in row groups that were tested by row group statistics (min and max value), and passed
233-
- `row_groups_pruned_statistics`: number of rows in row groups that were tested by row group statistics (min and max value), and did not pass
230+
- `row_groups_matched_bloom_filter`: number of row groups that were tested by a Bloom Filter, and passed
231+
- `row_groups_pruned_bloom_filter`: number of row groups that were tested by a Bloom Filter, and did not pass
232+
- `row_groups_matched_statistics`: number of row groups that were tested by row group statistics (min and max value), and passed
233+
- `row_groups_pruned_statistics`: number of row groups that were tested by row group statistics (min and max value), and did not pass
234234
- `pushdown_rows_matched`: rows that were tested by any of the above filtered, and passed all of them (this should be minimum of `page_index_rows_matched`, `row_groups_pruned_bloom_filter`, and `row_groups_pruned_statistics`)
235235
- `pushdown_rows_pruned`: rows that were tested by any of the above filtered, and did not pass one of them (this should be sum of `page_index_rows_matched`, `row_groups_pruned_bloom_filter`, and `row_groups_pruned_statistics`)
236236
- `predicate_evaluation_errors`: number of times evaluating the filter expression failed (expected to be zero in normal operation)

0 commit comments

Comments
 (0)