Skip to content

Commit e05a18c

Browse files
committed
clarfiy
1 parent c11549e commit e05a18c

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

datafusion/core/src/physical_optimizer/pruning.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)