Skip to content

Commit ee1b64f

Browse files
committed
break line
1 parent f7c53e9 commit ee1b64f

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/HashOuterJoin.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ case class HashOuterJoin(
4848
case LeftOuter => left.outputPartitioning
4949
case RightOuter => right.outputPartitioning
5050
case FullOuter => UnknownPartitioning(left.outputPartitioning.numPartitions)
51-
case x => throw new IllegalArgumentException(s"HashOuterJoin should not take $x as the JoinType")
51+
case x =>
52+
throw new IllegalArgumentException(s"HashOuterJoin should not take $x as the JoinType")
5253
}
5354

5455
override def requiredChildDistribution: Seq[ClusteredDistribution] =

0 commit comments

Comments
 (0)