Skip to content

Commit 5eb7222

Browse files
committed
Back out unintentional change.
1 parent 9d9b092 commit 5eb7222

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/core/src/main/scala/org/apache/spark/sql/execution/Exchange.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ case class Exchange(
158158
val rdd = if (needToCopyObjectsBeforeShuffle(part, serializer)) {
159159
child.execute().mapPartitions { iter =>
160160
val hashExpressions = newMutableProjection(expressions, child.output)()
161-
iter.map(r => (hashExpressions(r).copy, r.copy()))
161+
iter.map(r => (hashExpressions(r).copy(), r.copy()))
162162
}
163163
} else {
164164
child.execute().mapPartitions { iter =>

0 commit comments

Comments
 (0)