Skip to content

Commit

Permalink
SNOW-946379 Fix Test: Combination of multiple operators with filters (#…
Browse files Browse the repository at this point in the history
…60)

fix test: Combination of multiple operators with filters
  • Loading branch information
sfc-gh-bli authored Oct 19, 2023
1 parent aa0edf8 commit c8a0e60
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 c8a0e60

Please sign in to comment.