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 cd6866c commit cb8ddd7Copy full SHA for cb8ddd7
src/test/java/net/sf/jsqlparser/test/select/SelectTest.java
@@ -1397,6 +1397,10 @@ public void testOracleJoin4() throws JSQLParserException {
1397
String stmt = "SELECT * FROM tabelle1, tabelle2 WHERE tabelle1.a(+) = tabelle2.b AND tabelle1.b(+) IN ('A', 'B')";
1398
assertSqlCanBeParsedAndDeparsed(stmt);
1399
}
1400
+
1401
+ public void testOracleJoinIssue318() throws JSQLParserException {
1402
+ assertSqlCanBeParsedAndDeparsed("SELECT * FROM TBL_A, TBL_B, TBL_C WHERE TBL_A.ID(+) = TBL_B.ID AND TBL_C.ROOM(+) = TBL_B.ROOM");
1403
+ }
1404
1405
public void testProblemSqlIntersect() throws Exception {
1406
String stmt = "(SELECT * FROM a) INTERSECT (SELECT * FROM b)";
0 commit comments