Skip to content

Commit feaeaeb

Browse files
committed
1 parent 18d0181 commit feaeaeb

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/test/java/net/sf/jsqlparser/test/select/SelectTest.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2737,4 +2737,12 @@ public void testIssue566LargeView() throws IOException, JSQLParserException {
27372737
public void testIssue566PostgreSQLEscaped() throws IOException, JSQLParserException {
27382738
assertSqlCanBeParsedAndDeparsed("SELECT E'test'");
27392739
}
2740+
2741+
public void testIssue563MultiSubJoin() throws JSQLParserException {
2742+
assertSqlCanBeParsedAndDeparsed("SELECT c FROM ((SELECT a FROM t) JOIN (SELECT b FROM t2) ON a = B JOIN (SELECT c FROM t3) ON b = c)");
2743+
}
2744+
2745+
public void testIssue563MultiSubJoin_2() throws JSQLParserException {
2746+
assertSqlCanBeParsedAndDeparsed("SELECT c FROM ((SELECT a FROM t))");
2747+
}
27402748
}

0 commit comments

Comments
 (0)