Skip to content

Commit

Permalink
[SPARK-19994][HOTFIX][BRANCH-2.0] Change InnerLike to Inner
Browse files Browse the repository at this point in the history
## What changes were proposed in this pull request?

InnerLike => Inner

## How was this patch tested?

Existing tests.

Author: wangzhenhua <[email protected]>

Closes #17376 from wzhfy/hotFixWrongOrdering.
  • Loading branch information
wzhfy authored and hvanhovell committed Mar 21, 2017
1 parent 3983b3d commit 72a0ee3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ case class SortMergeJoinExec(
case RightOuter => requiredOrders(rightKeys)
// There are null rows in both streams, so there is no order.
case FullOuter => Nil
case _: InnerLike | LeftExistence(_) => requiredOrders(leftKeys)
case Inner | LeftExistence(_) => requiredOrders(leftKeys)
case x =>
throw new IllegalArgumentException(
s"${getClass.getSimpleName} should not take $x as the JoinType")
Expand Down

0 comments on commit 72a0ee3

Please sign in to comment.