aboutsummaryrefslogtreecommitdiff
path: root/sql/hive-thriftserver/src
diff options
context:
space:
mode:
authorMichael Armbrust <michael@databricks.com>2015-08-04 12:19:52 -0700
committerMichael Armbrust <michael@databricks.com>2015-08-04 12:19:52 -0700
commita0cc01759b0c2cecf340c885d391976eb4e3fad6 (patch)
tree6f260a6a5013e390f87601ee3c645e45e9a49508 /sql/hive-thriftserver/src
parent5a23213c148bfe362514f9c71f5273ebda0a848a (diff)
downloadspark-a0cc01759b0c2cecf340c885d391976eb4e3fad6.tar.gz
spark-a0cc01759b0c2cecf340c885d391976eb4e3fad6.tar.bz2
spark-a0cc01759b0c2cecf340c885d391976eb4e3fad6.zip
[SPARK-9606] [SQL] Ignore flaky thrift server tests
Author: Michael Armbrust <michael@databricks.com> Closes #7939 from marmbrus/turnOffThriftTests and squashes the following commits: 80d618e [Michael Armbrust] [SPARK-9606][SQL] Ignore flaky thrift server tests
Diffstat (limited to 'sql/hive-thriftserver/src')
-rw-r--r--sql/hive-thriftserver/src/test/scala/org/apache/spark/sql/hive/thriftserver/HiveThriftServer2Suites.scala4
1 files changed, 3 insertions, 1 deletions
diff --git a/sql/hive-thriftserver/src/test/scala/org/apache/spark/sql/hive/thriftserver/HiveThriftServer2Suites.scala b/sql/hive-thriftserver/src/test/scala/org/apache/spark/sql/hive/thriftserver/HiveThriftServer2Suites.scala
index 8374629b5d..17e7044c46 100644
--- a/sql/hive-thriftserver/src/test/scala/org/apache/spark/sql/hive/thriftserver/HiveThriftServer2Suites.scala
+++ b/sql/hive-thriftserver/src/test/scala/org/apache/spark/sql/hive/thriftserver/HiveThriftServer2Suites.scala
@@ -38,7 +38,7 @@ import org.apache.hive.service.cli.thrift.TCLIService.Client
import org.apache.hive.service.cli.thrift.ThriftCLIServiceClient
import org.apache.thrift.protocol.TBinaryProtocol
import org.apache.thrift.transport.TSocket
-import org.scalatest.BeforeAndAfterAll
+import org.scalatest.{Ignore, BeforeAndAfterAll}
import org.apache.spark.{Logging, SparkFunSuite}
import org.apache.spark.sql.hive.HiveContext
@@ -53,6 +53,7 @@ object TestData {
val smallKvWithNull = getTestDataFilePath("small_kv_with_null.txt")
}
+@Ignore // SPARK-9606
class HiveThriftBinaryServerSuite extends HiveThriftJdbcTest {
override def mode: ServerMode.Value = ServerMode.binary
@@ -379,6 +380,7 @@ class HiveThriftBinaryServerSuite extends HiveThriftJdbcTest {
}
}
+@Ignore // SPARK-9606
class HiveThriftHttpServerSuite extends HiveThriftJdbcTest {
override def mode: ServerMode.Value = ServerMode.http