Skip to content

Commit

Permalink
fix notserializable
Browse files Browse the repository at this point in the history
  • Loading branch information
adrian-wang committed Jul 14, 2015
1 parent 27841de commit 575a7c8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ case class BroadcastLeftSemiJoinHash(
if (!rowKey.anyNull) {
val keyExists = hashSet.contains(rowKey)
if (!keyExists) {
hashSet.add(rowKey)
// rowKey may be not serializable (from codegen)
hashSet.add(rowKey.copy())
}
}
}
Expand Down

0 comments on commit 575a7c8

Please sign in to comment.