aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorDavies Liu <davies.liu@gmail.com>2016-05-20 10:44:26 -0700
committerDavies Liu <davies.liu@gmail.com>2016-05-20 10:44:26 -0700
commit5a25cd4ff3eccbbb4653e1fb43dd9026bb2df331 (patch)
treef77549cdf540abf4d513637a410955ce5c924ceb /sql
parentfe2fcb48039ac897242e2cfaed31703fa6116db7 (diff)
downloadspark-5a25cd4ff3eccbbb4653e1fb43dd9026bb2df331.tar.gz
spark-5a25cd4ff3eccbbb4653e1fb43dd9026bb2df331.tar.bz2
spark-5a25cd4ff3eccbbb4653e1fb43dd9026bb2df331.zip
[HOTFIX] disable stress test
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)))