Skip to content

Commit b4801e0

Browse files
committed
code clean
1 parent cf9a233 commit b4801e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/core/src/test/resources/sql-tests/inputs/left-semi-join.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ SELECT * FROM testData2 x LEFT SEMI JOIN testData2 y ON x.a >= y.a + 2;
55
SELECT * FROM testData2 x LEFT SEMI JOIN testData2 y ON x.b = y.b and x.a >= y.a + 2;
66

77
-- left semi greater than predicate and equal operator #2
8-
SELECT * FROM testData2 x LEFT SEMI JOIN testData2 y ON x.b = y.a and x.a >= y.b + 1;
8+
SELECT * FROM testData2 x LEFT SEMI JOIN testData2 y ON x.b = y.a and x.a >= y.b + 1;

0 commit comments

Comments
 (0)