You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/user-guide/explain-usage.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -227,10 +227,10 @@ When predicate pushdown is enabled, `DataSourceExec` with `ParquetSource` gains
227
227
228
228
-`page_index_rows_matched`: number of rows in pages that were tested by a page index filter, and passed
229
229
-`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
234
234
-`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`)
235
235
-`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`)
236
236
-`predicate_evaluation_errors`: number of times evaluating the filter expression failed (expected to be zero in normal operation)
0 commit comments