From ab1819d38a3dbc1bce158c7c229c8e1e8948b27e Mon Sep 17 00:00:00 2001 From: Yuming Wang Date: Tue, 27 Aug 2019 15:41:22 +0900 Subject: [PATCH] [SPARK-28527][SQL][TEST][FOLLOW-UP] Ignores Thrift server ThriftServerQueryTestSuite ### What changes were proposed in this pull request? This PR ignores Thrift server `ThriftServerQueryTestSuite`. ### Why are the changes needed? This ThriftServerQueryTestSuite test case led to frequent Jenkins build failure. ### Does this PR introduce any user-facing change? Yes. ### How was this patch tested? N/A Closes #25592 from wangyum/SPARK-28527-f1. Authored-by: Yuming Wang Signed-off-by: HyukjinKwon --- .../sql/hive/thriftserver/ThriftServerQueryTestSuite.scala | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sql/hive-thriftserver/src/test/scala/org/apache/spark/sql/hive/thriftserver/ThriftServerQueryTestSuite.scala b/sql/hive-thriftserver/src/test/scala/org/apache/spark/sql/hive/thriftserver/ThriftServerQueryTestSuite.scala index 7374ba43a4cdd..1f7b3feae47b5 100644 --- a/sql/hive-thriftserver/src/test/scala/org/apache/spark/sql/hive/thriftserver/ThriftServerQueryTestSuite.scala +++ b/sql/hive-thriftserver/src/test/scala/org/apache/spark/sql/hive/thriftserver/ThriftServerQueryTestSuite.scala @@ -26,6 +26,7 @@ import scala.util.control.NonFatal import org.apache.hadoop.hive.conf.HiveConf.ConfVars import org.apache.hive.service.cli.HiveSQLException +import org.scalatest.Ignore import org.apache.spark.sql.{AnalysisException, SQLQueryTestSuite} import org.apache.spark.sql.catalyst.util.fileToString @@ -42,6 +43,7 @@ import org.apache.spark.sql.types._ * 2. Support DESC command. * 3. Support SHOW command. */ +@Ignore class ThriftServerQueryTestSuite extends SQLQueryTestSuite { private var hiveServer2: HiveThriftServer2 = _