aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql')
-rw-r--r--sql/core/src/test/scala/org/apache/spark/sql/execution/joins/HashedRelationSuite.scala3
1 files changed, 2 insertions, 1 deletions
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)))