We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57baa40 commit 2edd235Copy full SHA for 2edd235
sql/core/src/main/scala/org/apache/spark/sql/execution/joins/SortMergeJoin.scala
@@ -39,7 +39,7 @@ case class SortMergeJoin(
39
40
override def output: Seq[Attribute] = left.output ++ right.output
41
42
- override def outputPartitioning: Partitioning = left.outputPartitioning
+ override def outputPartitioning: Partitioning = HashSortedPartitioning(leftKeys, 0)
43
44
override def requiredChildDistribution: Seq[Distribution] =
45
ClusteredOrderedDistribution(leftKeys) :: ClusteredOrderedDistribution(rightKeys) :: Nil
0 commit comments