We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b5d24d commit 4f63b1cCopy full SHA for 4f63b1c
src/test/java/net/sf/jsqlparser/test/select/SelectTest.java
@@ -2780,4 +2780,12 @@ public void testParenthesisAroundFromItem2() throws JSQLParserException {
2780
public void testParenthesisAroundFromItem3() throws JSQLParserException {
2781
assertSqlCanBeParsedAndDeparsed("SELECT * FROM (mytable) myalias");
2782
}
2783
+
2784
+ public void testJoinerExpressionIssue596() throws JSQLParserException {
2785
+ assertSqlCanBeParsedAndDeparsed("SELECT * FROM a JOIN (b JOIN c ON b.id = c.id) ON a.id = c.id");
2786
+ }
2787
2788
+// public void testJoinerExpressionIssue596_2() throws JSQLParserException {
2789
+// assertSqlCanBeParsedAndDeparsed("SELECT * FROM a JOIN b JOIN c ON b.id = c.id ON a.id = c.id");
2790
+// }
2791
0 commit comments