You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by td...@apache.org on 2014/05/20 19:27:20 UTC

git commit: [Hotfix] Blacklisted flaky HiveCompatibility test

Repository: spark
Updated Branches:
  refs/heads/master 52eb54d02 -> 7f0cfe47f


[Hotfix] Blacklisted flaky HiveCompatibility test

`lateral_view_outer` query sometimes returns a different set of 10 rows.

Author: Tathagata Das <ta...@gmail.com>

Closes #838 from tdas/hive-test-fix2 and squashes the following commits:

9128a0d [Tathagata Das] Blacklisted flaky HiveCompatibility test.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/7f0cfe47
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/7f0cfe47
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/7f0cfe47

Branch: refs/heads/master
Commit: 7f0cfe47f4709843d70ceccc25dee7551206ce0d
Parents: 52eb54d
Author: Tathagata Das <ta...@gmail.com>
Authored: Tue May 20 10:27:12 2014 -0700
Committer: Tathagata Das <ta...@gmail.com>
Committed: Tue May 20 10:27:12 2014 -0700

----------------------------------------------------------------------
 .../spark/sql/hive/execution/HiveCompatibilitySuite.scala      | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/7f0cfe47/sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/HiveCompatibilitySuite.scala
----------------------------------------------------------------------
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 d83732b..9031abf 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",