Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
adrian-wang committed Jul 14, 2015
1 parent 8e0afca commit 72baa02
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -398,12 +398,12 @@ class SQLQuerySuite extends QueryTest with BeforeAndAfterAll with SQLTestUtils {
test("left semi greater than predicate and equal operator") {
checkAnswer(
sql("SELECT * FROM testData2 x LEFT SEMI JOIN testData2 y ON x.b = y.b and x.a >= y.a + 2"),
Seq(Row(3,1), Row(3,2))
Seq(Row(3, 1), Row(3, 2))
)

checkAnswer(
sql("SELECT * FROM testData2 x LEFT SEMI JOIN testData2 y ON x.b = y.a and x.a >= y.b + 1"),
Seq(Row(2,1), Row(2,2), Row(3,1), Row(3,2))
Seq(Row(2, 1), Row(2, 2), Row(3, 1), Row(3, 2))
)
}

Expand Down

0 comments on commit 72baa02

Please sign in to comment.