leanken commented on a change in pull request #29104: URL: https://github.com/apache/spark/pull/29104#discussion_r459813412
########## File path: sql/core/src/main/scala/org/apache/spark/sql/execution/joins/HashedRelation.scala ########## @@ -323,11 +374,18 @@ private[joins] object UnsafeHashedRelation { // Create a mapping of buildKeys -> rows val keyGenerator = UnsafeProjection.create(key) var numFields = 0 + val numKeys = key.length + val isOriginalInputEmpty = !input.hasNext + var allNullColumnKeyExistsInOriginalInput: Boolean = false while (input.hasNext) { val row = input.next().asInstanceOf[UnsafeRow] numFields = row.numFields() val key = keyGenerator(row) - if (!key.anyNull) { + if ((0 until numKeys).forall(key.isNullAt)) { Review comment: how about ``` if (isNullAware && !allNullColumnKeyExistsInOriginalInput && (0 until numKeys).forall(key.isNullAt)) { allNullColumnKeyExistsInOriginalInput = true } ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org