Skip to content

Commit c8e82a3

Browse files
committed
fix style
1 parent 6e897dd commit c8e82a3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sql/core/src/main/scala/org/apache/spark/sql/execution/joins/SortMergeJoin.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ case class SortMergeJoin(
4747
ClusteredDistribution(leftKeys) :: ClusteredDistribution(rightKeys) :: Nil
4848

4949
// this is to manually construct an ordering that can be used to compare keys from both sides
50-
private val keyOrdering: RowOrdering = RowOrdering.getOrderingFromDataTypes(leftKeys.map(_.dataType))
50+
private val keyOrdering: RowOrdering =
51+
RowOrdering.getOrderingFromDataTypes(leftKeys.map(_.dataType))
5152

5253
private def requiredOrders(keys: Seq[Expression], side: SparkPlan): Ordering[Row] =
5354
newOrdering(keys.map(SortOrder(_, Ascending)), side.output)

0 commit comments

Comments
 (0)