Skip to content

Commit

Permalink
fix outputpartitioning
Browse files Browse the repository at this point in the history
  • Loading branch information
adrian-wang committed Apr 3, 2015
1 parent 57baa40 commit 2edd235
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ case class SortMergeJoin(

override def output: Seq[Attribute] = left.output ++ right.output

override def outputPartitioning: Partitioning = left.outputPartitioning
override def outputPartitioning: Partitioning = HashSortedPartitioning(leftKeys, 0)

override def requiredChildDistribution: Seq[Distribution] =
ClusteredOrderedDistribution(leftKeys) :: ClusteredOrderedDistribution(rightKeys) :: Nil
Expand Down

0 comments on commit 2edd235

Please sign in to comment.