You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Below unit test(scala test) is failing on Spark-4.0 in DecimalBinaryOpSuite:
- SPARK-24957: average with decimal followed by aggregation returning wrong result *** FAILED ***
java.lang.IllegalArgumentException: Part of the plan is not columnar class org.apache.spark.sql.execution.aggregate.HashAggregateExec
HashAggregate(keys=[text#85], functions=[sum(avg_res#87)], output=[text#85, sum(avg_res)#94])
+- HashAggregate(keys=[text#85], functions=[partial_sum(avg_res#87)], output=[text#85, sum#105, isEmpty#106])
+- HashAggregate(keys=[text#85], functions=[avg(number#86)], output=[text#85, avg_res#87])
+- HashAggregate(keys=[text#85], functions=[partial_avg(number#86)], output=[text#85, sum#109, count#110L])
+- Exchange SinglePartition, REPARTITION_BY_NUM, [plan_id=120]
+- LocalTableScan [text#85, number#86]
at com.nvidia.spark.rapids.GpuTransitionOverrides.assertIsOnTheGpu(GpuTransitionOverrides.scala:671)
Disabling ANSI mode would fix this test failure in the short term.
We will have to skip these tests for Spark-4.0. i.e disable ANSI mode for these failing tests.
We need to enable the tests once #5114 if fixed. Mention the issue number to track.
Describe the bug
Below unit test(scala test) is failing on Spark-4.0 in DecimalBinaryOpSuite:
Disabling ANSI mode would fix this test failure in the short term.
Steps/Code to reproduce bug
The text was updated successfully, but these errors were encountered: