From 1ae1a8799ecf0a485cb4617a54d8d68feea0eaf8 Mon Sep 17 00:00:00 2001 From: Liang-Chi Hsieh Date: Wed, 24 Jun 2020 09:02:07 -0700 Subject: [PATCH] Modify test name. --- .../sql/execution/adaptive/AdaptiveQueryExecSuite.scala | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/sql/core/src/test/scala/org/apache/spark/sql/execution/adaptive/AdaptiveQueryExecSuite.scala b/sql/core/src/test/scala/org/apache/spark/sql/execution/adaptive/AdaptiveQueryExecSuite.scala index dfec7132bdddd..27d9748476c98 100644 --- a/sql/core/src/test/scala/org/apache/spark/sql/execution/adaptive/AdaptiveQueryExecSuite.scala +++ b/sql/core/src/test/scala/org/apache/spark/sql/execution/adaptive/AdaptiveQueryExecSuite.scala @@ -1022,8 +1022,7 @@ class AdaptiveQueryExecSuite } } - test("SPARK-31220 and SPARK-32056 coalesce partitions for repartition by expressions " + - "when AQE is enabled") { + test("SPARK-31220, SPARK-32056: repartition by expression with AQE") { Seq(true, false).foreach { enableAQE => withSQLConf( SQLConf.ADAPTIVE_EXECUTION_ENABLED.key -> enableAQE.toString, @@ -1064,8 +1063,7 @@ class AdaptiveQueryExecSuite } } - test("SPARK-31220 and SPARK-32056 coalesce partitions for repartition by range " + - "when AQE is enabled") { + test("SPARK-31220, SPARK-32056: repartition by range with AQE") { Seq(true, false).foreach { enableAQE => withSQLConf( SQLConf.ADAPTIVE_EXECUTION_ENABLED.key -> enableAQE.toString,