Skip to content

Commit

Permalink
Use only equals in UnsafeRow sort before repartition
Browse files Browse the repository at this point in the history
  • Loading branch information
w.montaz committed Mar 17, 2024
1 parent 1f247d4 commit b63002d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ object ShuffleExchangeExec {
UnsafeExternalRowSorter.PrefixComputer.Prefix = {
// The hashcode generated from the binary form of a [[UnsafeRow]] should not be null.
result.isNull = false
result.value = row.hashCode()
result.value = 42
result
}
}
Expand Down

0 comments on commit b63002d

Please sign in to comment.