LuciferYang commented on code in PR #45811:
URL: https://github.com/apache/spark/pull/45811#discussion_r1547169228


##########
sql/core/src/test/scala/org/apache/spark/sql/DataFrameAggregateSuite.scala:
##########
@@ -1666,11 +1666,17 @@ class DataFrameAggregateSuite extends QueryTest
     assert(spark.range(2).where("id > 2").agg(emptyAgg).limit(1).count() == 1)
   }
 
-  test("SPARK-38221: group by stream of complex expressions should not fail") {
+  test("SPARK-45685: group by `LazyList` of complex expressions should not 
fail") {
     val df = Seq(1).toDF("id").groupBy(LazyList($"id" + 1, $"id" + 2): 
_*).sum("id")
     checkAnswer(df, Row(2, 3, 1))
   }
 
+  test("SPARK-38221: group by `Stream` of complex expressions should not 
fail") {
+    @scala.annotation.nowarn("cat=deprecation")

Review Comment:
   Need to suppress the use of `Stream`



-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to