From 5a25cd4ff3eccbbb4653e1fb43dd9026bb2df331 Mon Sep 17 00:00:00 2001
From: Davies Liu <davies.liu@gmail.com>
Date: Fri, 20 May 2016 10:44:26 -0700
Subject: [PATCH] [HOTFIX] disable stress test

---
 .../apache/spark/sql/execution/joins/HashedRelationSuite.scala | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sql/core/src/test/scala/org/apache/spark/sql/execution/joins/HashedRelationSuite.scala b/sql/core/src/test/scala/org/apache/spark/sql/execution/joins/HashedRelationSuite.scala
index a5b56541c9..40864c80eb 100644
--- a/sql/core/src/test/scala/org/apache/spark/sql/execution/joins/HashedRelationSuite.scala
+++ b/sql/core/src/test/scala/org/apache/spark/sql/execution/joins/HashedRelationSuite.scala
@@ -213,7 +213,8 @@ class HashedRelationSuite extends SparkFunSuite with SharedSQLContext {
     longRelation.close()
   }
 
-  test("build HashedRelation with more than 100 millions rows") {
+  // This test require 4G heap to run, should run it manually
+  ignore("build HashedRelation with more than 100 millions rows") {
     val unsafeProj = UnsafeProjection.create(
       Seq(BoundReference(0, IntegerType, false),
         BoundReference(1, StringType, true)))
-- 
GitLab