aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCheng Lian <lian@databricks.com>2016-11-10 13:44:54 -0800
committerReynold Xin <rxin@databricks.com>2016-11-10 13:44:54 -0800
commite0deee1f7df31177cfc14bbb296f0baa372f473d (patch)
treea782469acf053335d9e6dd33b0309111ac7527f7
parent2f7461f31331cfc37f6cfa3586b7bbefb3af5547 (diff)
downloadspark-e0deee1f7df31177cfc14bbb296f0baa372f473d.tar.gz
spark-e0deee1f7df31177cfc14bbb296f0baa372f473d.tar.bz2
spark-e0deee1f7df31177cfc14bbb296f0baa372f473d.zip
[SPARK-18403][SQL] Temporarily disable flaky ObjectHashAggregateSuite
## What changes were proposed in this pull request? Randomized tests in `ObjectHashAggregateSuite` is being flaky and breaks PR builds. This PR disables them temporarily to bring back the PR build. ## How was this patch tested? N/A Author: Cheng Lian <lian@databricks.com> Closes #15845 from liancheng/ignore-flaky-object-hash-agg-suite.
-rw-r--r--sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/ObjectHashAggregateSuite.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/ObjectHashAggregateSuite.scala b/sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/ObjectHashAggregateSuite.scala
index 93fc5e8a5e..b7f91d8c3a 100644
--- a/sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/ObjectHashAggregateSuite.scala
+++ b/sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/ObjectHashAggregateSuite.scala
@@ -326,7 +326,8 @@ class ObjectHashAggregateSuite
// Currently Spark SQL doesn't support evaluating distinct aggregate function together
// with aggregate functions without partial aggregation support.
if (!(aggs.contains(withoutPartial) && aggs.contains(withDistinct))) {
- test(
+ // TODO Re-enables them after fixing SPARK-18403
+ ignore(
s"randomized aggregation test - " +
s"${names.mkString("[", ", ", "]")} - " +
s"${if (withGroupingKeys) "with" else "without"} grouping keys - " +