Skip to content

Commit 470d682

Browse files
committed
fix compilation errors
1 parent ee0c844 commit 470d682

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/optimizer/ReplaceOperatorSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ class ReplaceOperatorSuite extends PlanTest {
248248
val condition = basePlan.output.zip(otherPlan.output).map { case (a1, a2) =>
249249
a1 <=> a2 }.reduce( _ && _)
250250
val correctAnswer = Aggregate(basePlan.output, otherPlan.output,
251-
Join(basePlan, otherPlan, LeftAnti, Option(condition))).analyze
251+
Join(basePlan, otherPlan, LeftAnti, Option(condition), JoinHint.NONE)).analyze
252252
comparePlans(result, correctAnswer)
253253
}
254254
}

0 commit comments

Comments
 (0)