We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ce0741 commit 838f207Copy full SHA for 838f207
datafusion/optimizer/tests/optimizer_integration.rs
@@ -312,7 +312,7 @@ fn eliminate_redundant_null_check_on_count() {
312
GROUP BY col_int32
313
HAVING c IS NOT NULL";
314
let plan = test_sql(sql).unwrap();
315
- let expected = "Projection: test.col_int32, count(Int64(1)) AS count(*) AS c\
+ let expected = "Projection: test.col_int32, count(Int64(1)) AS c\
316
\n Aggregate: groupBy=[[test.col_int32]], aggr=[[count(Int64(1))]]\
317
\n TableScan: test projection=[col_int32]";
318
assert_eq!(expected, format!("{plan}"));
0 commit comments