File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
datafusion/core/src/physical_optimizer Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -290,10 +290,9 @@ impl PruningPredicate {
290290 /// of literals (constants). These are the columns the that may be passed to
291291 /// [`PruningStatistics::contained`] during pruning.
292292 ///
293- /// This is useful to avoid fetching statistics for columns that can not be
294- /// used in `contains`. For example, it can be used to avoid reading bloom
295- /// filters (a non trivial operation) for columns that do not appear in the
296- /// predicate.
293+ /// This is useful to avoid fetching statistics for columns that will not be
294+ /// used in the predicate. For example, it can be used to avoid reading
295+ /// uneeded bloom filters (a non trivial operation).
297296 pub fn literal_columns ( & self ) -> Vec < String > {
298297 let mut seen = HashSet :: new ( ) ;
299298 self . literal_guarantees
You can’t perform that action at this time.
0 commit comments