Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
minor fixes
  • Loading branch information
adrian-wang committed Aug 6, 2015
commit 13f86bdea7ca713263f446548f89a16e2ee8c372
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ case class SortMergeJoin(
UnknownPartitioning(streamedPlan.outputPartitioning.numPartitions)
case Inner =>
PartitioningCollection(Seq(streamedPlan.outputPartitioning, bufferedPlan.outputPartitioning))
case LeftOuter | rightOuter =>
case LeftOuter | RightOuter =>
streamedPlan.outputPartitioning
case x =>
throw new IllegalStateException(s"SortMergeJoin should not take $x as the JoinType")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -481,4 +481,4 @@ class JoinSuite extends QueryTest with SQLTestUtils with BeforeAndAfterEach {
Row(3, 1) ::
Row(3, 2) :: Nil)
}
}
}