Repository: spark
Updated Branches:
  refs/heads/branch-1.5 eebb3f945 -> 71ea61f90


[SPARK-9908] [SQL] When spark.sql.tungsten.enabled is false, broadcast join 
does not work

https://issues.apache.org/jira/browse/SPARK-9908

Author: Yin Huai <yh...@databricks.com>

Closes #8149 from yhuai/SPARK-9908.

(cherry picked from commit 4413d0855aaba5cb00f737dc6934a0b92d9bc05d)
Signed-off-by: Reynold Xin <r...@databricks.com>


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/71ea61f9
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/71ea61f9
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/71ea61f9

Branch: refs/heads/branch-1.5
Commit: 71ea61f9063a83d4039347fab52255fccada19f1
Parents: eebb3f9
Author: Yin Huai <yh...@databricks.com>
Authored: Wed Aug 12 20:03:55 2015 -0700
Committer: Reynold Xin <r...@databricks.com>
Committed: Wed Aug 12 20:04:04 2015 -0700

----------------------------------------------------------------------
 .../org/apache/spark/sql/execution/joins/HashedRelation.scala  | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/71ea61f9/sql/core/src/main/scala/org/apache/spark/sql/execution/joins/HashedRelation.scala
----------------------------------------------------------------------
diff --git 
a/sql/core/src/main/scala/org/apache/spark/sql/execution/joins/HashedRelation.scala
 
b/sql/core/src/main/scala/org/apache/spark/sql/execution/joins/HashedRelation.scala
index 076afe6..bb333b4 100644
--- 
a/sql/core/src/main/scala/org/apache/spark/sql/execution/joins/HashedRelation.scala
+++ 
b/sql/core/src/main/scala/org/apache/spark/sql/execution/joins/HashedRelation.scala
@@ -66,7 +66,8 @@ private[joins] final class GeneralHashedRelation(
     private var hashTable: JavaHashMap[InternalRow, 
CompactBuffer[InternalRow]])
   extends HashedRelation with Externalizable {
 
-  private def this() = this(null) // Needed for serialization
+  // Needed for serialization (it is public to make Java serialization work)
+  def this() = this(null)
 
   override def get(key: InternalRow): Seq[InternalRow] = hashTable.get(key)
 
@@ -88,7 +89,8 @@ private[joins]
 final class UniqueKeyHashedRelation(private var hashTable: 
JavaHashMap[InternalRow, InternalRow])
   extends HashedRelation with Externalizable {
 
-  private def this() = this(null) // Needed for serialization
+  // Needed for serialization (it is public to make Java serialization work)
+  def this() = this(null)
 
   override def get(key: InternalRow): Seq[InternalRow] = {
     val v = hashTable.get(key)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to