Skip to content

Commit 526b90b

Browse files
committed
1 parent 4ad79d0 commit 526b90b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3608,4 +3608,9 @@ public void testGroupingSets2() throws JSQLParserException {
36083608
public void testGroupingSets3() throws JSQLParserException {
36093609
assertSqlCanBeParsedAndDeparsed("SELECT COL_1 FROM TABLE_1 GROUP BY GROUPING SETS (COL_1, ())");
36103610
}
3611+
3612+
@Test
3613+
public void testLongQualifiedNamesIssue763() throws JSQLParserException {
3614+
assertSqlCanBeParsedAndDeparsed("SELECT mongodb.test.test.intField, postgres.test.test.intField, postgres.test.test.datefield FROM mongodb.test.test JOIN postgres.postgres.test.test ON mongodb.test.test.intField = postgres.test.test.intField WHERE mongodb.test.test.intField = 123");
3615+
}
36113616
}

0 commit comments

Comments
 (0)