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 f7c53e9 commit ee1b64fCopy full SHA for ee1b64f
sql/core/src/main/scala/org/apache/spark/sql/execution/joins/HashOuterJoin.scala
@@ -48,7 +48,8 @@ case class HashOuterJoin(
48
case LeftOuter => left.outputPartitioning
49
case RightOuter => right.outputPartitioning
50
case FullOuter => UnknownPartitioning(left.outputPartitioning.numPartitions)
51
- case x => throw new IllegalArgumentException(s"HashOuterJoin should not take $x as the JoinType")
+ case x =>
52
+ throw new IllegalArgumentException(s"HashOuterJoin should not take $x as the JoinType")
53
}
54
55
override def requiredChildDistribution: Seq[ClusteredDistribution] =
0 commit comments