Skip to content

Commit 1e6ad91

Browse files
committed
WIP: Fix projection expression in SQL integration test snapshot
1 parent c2a5082 commit 1e6ad91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion/sql/tests/sql_integration.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1749,7 +1749,7 @@ fn select_simple_aggregate_with_groupby_non_column_expression_nested_and_resolva
17491749
assert_snapshot!(
17501750
plan,
17511751
@r#"
1752-
Projection: (person.age + Int64(1)) / Int64(2) * (person.age + Int64(1)), min(person.first_name)
1752+
Projection: person.age + Int64(1) / Int64(2) * person.age + Int64(1), min(person.first_name)
17531753
Aggregate: groupBy=[[person.age + Int64(1)]], aggr=[[min(person.first_name)]]
17541754
TableScan: person
17551755
"#

0 commit comments

Comments
 (0)