We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d6d74b commit f2708a7Copy full SHA for f2708a7
1 file changed
datafusion/physical-plan/src/filter.rs
@@ -348,7 +348,6 @@ impl FilterExec {
348
} else if !check_support(predicate, schema) {
349
// Interval analysis is not applicable. Use ExpressionAnalyzer for
350
// better selectivity when available, fall back to default_selectivity.
351
- // Still pin NDV=1 for every `col = literal` column.
352
let selectivity = expression_analyzer_registry
353
.and_then(|r| r.get_selectivity(predicate, &input_stats))
354
.unwrap_or(default_selectivity as f64 / 100.0);
0 commit comments