We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d06baf commit 0495f24Copy full SHA for 0495f24
datafusion/optimizer/src/push_down_filter.rs
@@ -940,7 +940,7 @@ impl OptimizerRule for PushDownFilter {
940
let group_expr_columns = agg
941
.group_expr
942
.iter()
943
- .map(|e| Ok(Column::from_qualified_name(e.schema_name().to_string())))
+ .map(|e| Ok(Column::from_qualified_name_ignore_case(e.schema_name().to_string())))
944
.collect::<Result<HashSet<_>>>()?;
945
946
let predicates = split_conjunction_owned(filter.predicate);
0 commit comments