Skip to content

Commit

Permalink
Back out unintentional change.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshRosen committed Jul 15, 2015
1 parent 9d9b092 commit 5eb7222
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ case class Exchange(
val rdd = if (needToCopyObjectsBeforeShuffle(part, serializer)) {
child.execute().mapPartitions { iter =>
val hashExpressions = newMutableProjection(expressions, child.output)()
iter.map(r => (hashExpressions(r).copy, r.copy()))
iter.map(r => (hashExpressions(r).copy(), r.copy()))
}
} else {
child.execute().mapPartitions { iter =>
Expand Down

0 comments on commit 5eb7222

Please sign in to comment.