Skip to content

Commit

Permalink
[MINOR] fix a typo in BroadcastJoinSuite
Browse files Browse the repository at this point in the history
## What changes were proposed in this pull request?

`BroadcastNestedLoopJoinExec` should be `BroadcastHashJoinExec`

## How was this patch tested?

N/A

Author: Wenchen Fan <wenchen@databricks.com>

Closes #20202 from cloud-fan/typo.
  • Loading branch information
cloud-fan committed Jan 10, 2018
1 parent 96ba217 commit 6f169ca
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -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 =>
Expand Down

0 comments on commit 6f169ca

Please sign in to comment.