Skip to content

Commit

Permalink
rm print
Browse files Browse the repository at this point in the history
  • Loading branch information
jayzhan211 committed Feb 19, 2025
1 parent 5c2acd5 commit 7379fad
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion datafusion/optimizer/tests/optimizer_integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,6 @@ fn join_keys_in_subquery_alias_1() {
fn push_down_filter_groupby_expr_contains_alias() {
let sql = "SELECT * FROM (SELECT (col_int32 + col_uint32) AS c, count(*) FROM test GROUP BY 1) where c > 3";
let plan = test_sql(sql).unwrap();
println!("plan: {:?}", plan);
let expected = "Projection: test.col_int32 + test.col_uint32 AS c, count(*)\
\n Aggregate: groupBy=[[test.col_int32 + CAST(test.col_uint32 AS Int32)]], aggr=[[count(*)]]\
\n Filter: test.col_int32 + CAST(test.col_uint32 AS Int32) > Int32(3)\
Expand Down

0 comments on commit 7379fad

Please sign in to comment.