cloud-fan commented on a change in pull request #29673: URL: https://github.com/apache/spark/pull/29673#discussion_r486034361
########## File path: sql/core/src/test/scala/org/apache/spark/sql/DataFrameSuite.scala ########## @@ -2555,6 +2555,17 @@ class DataFrameSuite extends QueryTest val df = Seq(0.0 -> -0.0).toDF("pos", "neg") checkAnswer(df.select($"pos" > $"neg"), Row(false)) } + + test("SPARK-32816: aggregating multiple distinct DECIMAL columns") { + withTempView("test_table") { + spark.range(0, 100, 1, 1) + .selectExpr("id", "cast(id as decimal(9, 0)) as decimal_col") + .createOrReplaceTempView("test_table") Review comment: can you follow https://github.com/apache/spark/pull/29673#discussion_r485977416 ? That's a better idea. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org