aboutsummaryrefslogtreecommitdiff
path: root/sql/hive-thriftserver
diff options
context:
space:
mode:
authorYin Huai <yhuai@databricks.com>2016-01-11 19:59:15 -0800
committerJosh Rosen <joshrosen@databricks.com>2016-01-11 19:59:15 -0800
commitaaa2c3b628319178ca1f3f68966ff253c2de49cb (patch)
tree7a5fdc824dab03976604823c81f39c5d313dd37a /sql/hive-thriftserver
parent36d493509d32d14b54af62f5f65e8fa750e7413d (diff)
downloadspark-aaa2c3b628319178ca1f3f68966ff253c2de49cb.tar.gz
spark-aaa2c3b628319178ca1f3f68966ff253c2de49cb.tar.bz2
spark-aaa2c3b628319178ca1f3f68966ff253c2de49cb.zip
[SPARK-11823] Ignores HiveThriftBinaryServerSuite's test jdbc cancel
https://issues.apache.org/jira/browse/SPARK-11823 This test often hangs and times out, leaving hanging processes. Let's ignore it for now and improve the test. Author: Yin Huai <yhuai@databricks.com> Closes #10715 from yhuai/SPARK-11823-ignore.
Diffstat (limited to 'sql/hive-thriftserver')
-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 e598284ab2..ba3b26e1b7 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
@@ -347,7 +347,9 @@ class HiveThriftBinaryServerSuite extends HiveThriftJdbcTest {
)
}
- test("test jdbc cancel") {
+ // This test often hangs and then times out, leaving the hanging processes.
+ // Let's ignore it and improve the test.
+ ignore("test jdbc cancel") {
withJdbcStatement { statement =>
val queries = Seq(
"DROP TABLE IF EXISTS test_map",