tustvold commented on code in PR #4767:
URL: https://github.com/apache/arrow-datafusion/pull/4767#discussion_r1058873819
##########
datafusion/core/tests/sql/subqueries.rs:
##########
@@ -255,17 +254,18 @@ async fn tpch_q17_correlated() -> Result<()> {
let dataframe = ctx.sql(sql).await.unwrap();
let plan = dataframe.into_optimized_plan().unwrap();
let actual = format!("{}", plan.display_indent());
- let expected = r#"Projection: CAST(SUM(lineitem.l_extendedprice) AS
Decimal128(38, 33)) / CAST(Float64(7) AS Decimal128(38, 33)) AS avg_yearly
+ let expected = r#"Projection: CAST(SUM(lineitem.l_extendedprice) AS
Float64) / Float64(7) AS avg_yearly
Review Comment:
This is the fix from #4038
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]