Github user tdas commented on a diff in the pull request:
https://github.com/apache/spark/pull/19452#discussion_r144449963
--- Diff:
sql/core/src/main/scala/org/apache/spark/sql/execution/streaming/StreamingSymmetricHashJoinExec.scala
---
@@ -161,6 +164,10 @@ case class StreamingSymmetricHashJoinExec(
new SerializableConfiguration(SessionState.newHadoopConf(
sparkContext.hadoopConfiguration, sqlContext.conf)))
+
+ val nullLeft = new
GenericInternalRow(left.output.map(_.withNullability(true)).length)
+ val nullRight = new
GenericInternalRow(right.output.map(_.withNullability(true)).length)
--- End diff --
right!!
you could pass it on as another param `otherSideNullRow` in
`storeAndJoinWithOtherSide`. I am fine either way.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]