Skip to content

Commit 529068a

Browse files
committed
clear
1 parent c60e322 commit 529068a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/cubestore/cubestore/src/queryplanner/planning.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -797,7 +797,7 @@ impl PlanRewriter for ChooseIndex<'_> {
797797
}
798798
}
799799
LogicalPlan::Filter { predicate, .. } => {
800-
let mut single_filtered: Vec<&datafusion::prelude::Column> = Vec::new();
800+
let mut single_filtered = Vec::new();
801801
if single_value_filter_columns(predicate, &mut single_filtered) {
802802
Some(
803803
context.update_single_value_filtered_cols(

0 commit comments

Comments
 (0)