aboutsummaryrefslogtreecommitdiff
path: root/sql/hive
diff options
context:
space:
mode:
authorEric Liang <ekl@databricks.com>2016-11-01 12:35:34 -0700
committerReynold Xin <rxin@databricks.com>2016-11-01 12:35:34 -0700
commitcfac17ee1cec414663b957228e469869eb7673c1 (patch)
tree1e466a61f21d984c6393826c3705400df9cb51dc /sql/hive
parentd0272b436512b71f04313e109d3d21a6e9deefca (diff)
downloadspark-cfac17ee1cec414663b957228e469869eb7673c1.tar.gz
spark-cfac17ee1cec414663b957228e469869eb7673c1.tar.bz2
spark-cfac17ee1cec414663b957228e469869eb7673c1.zip
[SPARK-18167] Disable flaky SQLQuerySuite test
We now know it's a persistent environmental issue that is causing this test to sometimes fail. One hypothesis is that some configuration is leaked from another suite, and depending on suite ordering this can cause this test to fail. I am planning on mining the jenkins logs to try to narrow down which suite could be causing this. For now, disable the test. Author: Eric Liang <ekl@databricks.com> Closes #15720 from ericl/disable-flaky-test.
Diffstat (limited to 'sql/hive')
-rw-r--r--sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/SQLQuerySuite.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/SQLQuerySuite.scala b/sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/SQLQuerySuite.scala
index 8b916932ff..b9353b5b5d 100644
--- a/sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/SQLQuerySuite.scala
+++ b/sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/SQLQuerySuite.scala
@@ -1565,7 +1565,7 @@ class SQLQuerySuite extends QueryTest with SQLTestUtils with TestHiveSingleton {
).map(i => Row(i._1, i._2, i._3, i._4)))
}
- test("SPARK-10562: partition by column with mixed case name") {
+ ignore("SPARK-10562: partition by column with mixed case name") {
def runOnce() {
withTable("tbl10562") {
val df = Seq(2012 -> "a").toDF("Year", "val")