Skip to content

Commit

Permalink
fix test: Combination of multiple operators with filters
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-bli committed Oct 19, 2023
1 parent 0e6bdb2 commit c67c6a2
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,7 @@ trait ComplexDataFrameSuite extends SNTestBase {

checkAnswer(
df1.filter($"a" < 6).join(df2, "a").union(df2.filter($"a" > 5)),
(1 to 10).map(i => Row(i, s"test$i")),
false)
(1 to 10).map(i => Row(i, s"test$i")))
}

test("join on top of unions") {
Expand Down

0 comments on commit c67c6a2

Please sign in to comment.