Skip to content

Commit e0deee1

Browse files
lianchengrxin
authored andcommitted
[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 apache#15845 from liancheng/ignore-flaky-object-hash-agg-suite.
1 parent 2f7461f commit e0deee1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/ObjectHashAggregateSuite.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,8 @@ class ObjectHashAggregateSuite
326326
// Currently Spark SQL doesn't support evaluating distinct aggregate function together
327327
// with aggregate functions without partial aggregation support.
328328
if (!(aggs.contains(withoutPartial) && aggs.contains(withDistinct))) {
329-
test(
329+
// TODO Re-enables them after fixing SPARK-18403
330+
ignore(
330331
s"randomized aggregation test - " +
331332
s"${names.mkString("[", ", ", "]")} - " +
332333
s"${if (withGroupingKeys) "with" else "without"} grouping keys - " +

0 commit comments

Comments
 (0)