Skip to content

Commit b7437da

Browse files
committed
Remove unnecessary extend from BroadcastHashJoinExec
1 parent fc182f7 commit b7437da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/core/src/main/scala/org/apache/spark/sql/execution/joins/BroadcastHashJoinExec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ case class BroadcastHashJoinExec(
4646
left: SparkPlan,
4747
right: SparkPlan,
4848
isNullAwareAntiJoin: Boolean = false)
49-
extends HashJoin with CodegenSupport {
49+
extends HashJoin {
5050

5151
if (isNullAwareAntiJoin) {
5252
require(leftKeys.length == 1, "leftKeys length should be 1")

0 commit comments

Comments
 (0)