Repository: spark Updated Branches: refs/heads/branch-2.3 df047bdba -> 45f5c3cee
[MINOR] fix a typo in BroadcastJoinSuite ## What changes were proposed in this pull request? `BroadcastNestedLoopJoinExec` should be `BroadcastHashJoinExec` ## How was this patch tested? N/A Author: Wenchen Fan <[email protected]> Closes #20202 from cloud-fan/typo. (cherry picked from commit 6f169ca9e1444fe8fd1ab6f3fbf0a8be1670f1b5) Signed-off-by: Wenchen Fan <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/45f5c3ce Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/45f5c3ce Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/45f5c3ce Branch: refs/heads/branch-2.3 Commit: 45f5c3cee9f3547ee0d526a5a8df38ae3f5e2796 Parents: df047bd Author: Wenchen Fan <[email protected]> Authored: Wed Jan 10 10:20:34 2018 +0800 Committer: Wenchen Fan <[email protected]> Committed: Wed Jan 10 10:20:56 2018 +0800 ---------------------------------------------------------------------- .../org/apache/spark/sql/execution/joins/BroadcastJoinSuite.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/45f5c3ce/sql/core/src/test/scala/org/apache/spark/sql/execution/joins/BroadcastJoinSuite.scala ---------------------------------------------------------------------- diff --git a/sql/core/src/test/scala/org/apache/spark/sql/execution/joins/BroadcastJoinSuite.scala b/sql/core/src/test/scala/org/apache/spark/sql/execution/joins/BroadcastJoinSuite.scala index 6da46ea..0bcd54e 100644 --- a/sql/core/src/test/scala/org/apache/spark/sql/execution/joins/BroadcastJoinSuite.scala +++ b/sql/core/src/test/scala/org/apache/spark/sql/execution/joins/BroadcastJoinSuite.scala @@ -318,7 +318,7 @@ class BroadcastJoinSuite extends QueryTest with SQLTestUtils { case b: BroadcastNestedLoopJoinExec => assert(b.getClass.getSimpleName === joinMethod) assert(b.buildSide === buildSide) - case b: BroadcastNestedLoopJoinExec => + case b: BroadcastHashJoinExec => assert(b.getClass.getSimpleName === joinMethod) assert(b.buildSide === buildSide) case w: WholeStageCodegenExec => --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
