aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorTathagata Das <tathagata.das1565@gmail.com>2014-05-20 10:27:12 -0700
committerTathagata Das <tathagata.das1565@gmail.com>2014-05-20 10:27:12 -0700
commit7f0cfe47f4709843d70ceccc25dee7551206ce0d (patch)
tree5f69dca94387a4fcdcefbe4cf83dc6b81a524375 /sql
parent52eb54d02403a3c37d84b9da7cc1cdb261048cf8 (diff)
downloadspark-7f0cfe47f4709843d70ceccc25dee7551206ce0d.tar.gz
spark-7f0cfe47f4709843d70ceccc25dee7551206ce0d.tar.bz2
spark-7f0cfe47f4709843d70ceccc25dee7551206ce0d.zip
[Hotfix] Blacklisted flaky HiveCompatibility test
`lateral_view_outer` query sometimes returns a different set of 10 rows. Author: Tathagata Das <tathagata.das1565@gmail.com> Closes #838 from tdas/hive-test-fix2 and squashes the following commits: 9128a0d [Tathagata Das] Blacklisted flaky HiveCompatibility test.
Diffstat (limited to 'sql')
-rw-r--r--sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/HiveCompatibilitySuite.scala6
1 files changed, 4 insertions, 2 deletions
diff --git a/sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/HiveCompatibilitySuite.scala b/sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/HiveCompatibilitySuite.scala
index d83732b51e..9031abf733 100644
--- a/sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/HiveCompatibilitySuite.scala
+++ b/sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/HiveCompatibilitySuite.scala
@@ -169,7 +169,10 @@ class HiveCompatibilitySuite extends HiveQueryFileTest with BeforeAndAfter {
"archive_corrupt",
// No support for case sensitivity is resolution using hive properties atm.
- "case_sensitivity"
+ "case_sensitivity",
+
+ // Flaky test, Hive sometimes returns different set of 10 rows.
+ "lateral_view_outer"
)
/**
@@ -476,7 +479,6 @@ class HiveCompatibilitySuite extends HiveQueryFileTest with BeforeAndAfter {
"join_view",
"lateral_view",
"lateral_view_cp",
- "lateral_view_outer",
"lateral_view_ppd",
"lineage1",
"literal_double",