Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
chucheng92 committed Oct 27, 2023
1 parent 79f2f61 commit 040b827
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10630,6 +10630,14 @@ private static void checkArrayConcatAggFuncFails(SqlOperatorFixture t) {
f.checkNull("floor(cast(null as date) to month)");
}

@Disabled
@Test void testJoinInSubQuery() {
final SqlOperatorFixture f = Fixtures.forOperators(true);
f.check("select t1.x from (values (1, 'a')) as t1(x, y) left join (values (1, 'b')) "
+ "as t2(x, y) on t1.x=t2.x and t1.y "
+ "in (1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21)", "INTEGER NOT NULL", "1");
}

@Test void testCeilFuncDateTime() {
final SqlOperatorFixture f = fixture();
f.enableTypeCoercion(false)
Expand Down

0 comments on commit 040b827

Please sign in to comment.