Skip to content

Commit

Permalink
fix compilation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
maryannxue committed Jan 2, 2019
1 parent ee0c844 commit 470d682
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ class ReplaceOperatorSuite extends PlanTest {
val condition = basePlan.output.zip(otherPlan.output).map { case (a1, a2) =>
a1 <=> a2 }.reduce( _ && _)
val correctAnswer = Aggregate(basePlan.output, otherPlan.output,
Join(basePlan, otherPlan, LeftAnti, Option(condition))).analyze
Join(basePlan, otherPlan, LeftAnti, Option(condition), JoinHint.NONE)).analyze
comparePlans(result, correctAnswer)
}
}

0 comments on commit 470d682

Please sign in to comment.