Skip to content

Commit 4c00a2b

Browse files
committed
Roll back unrelated change
1 parent 28726da commit 4c00a2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/AggregationQuerySuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1021,7 +1021,7 @@ abstract class AggregationQuerySuite extends QueryTest with SQLTestUtils with Te
10211021

10221022
test("SPARK-29122: hash-based aggregates for unfixed-length decimals in the interpreter mode") {
10231023
withSQLConf(SQLConf.WHOLESTAGE_CODEGEN_ENABLED.key -> "false",
1024-
SQLConf.CODEGEN_FACTORY_MODE.key -> CodegenObjectFactoryMode.NO_CODEGEN.toString) {
1024+
SQLConf.CODEGEN_FACTORY_MODE.key -> CodegenObjectFactoryMode.NO_CODEGEN.toString) {
10251025
withTempView("t") {
10261026
spark.range(3).selectExpr("CAST(id AS decimal(38, 0)) a").createOrReplaceTempView("t")
10271027
checkAnswer(sql("SELECT SUM(a) FROM t"), Row(java.math.BigDecimal.valueOf(3)))

0 commit comments

Comments
 (0)