File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
main/javacc/net/sf/jsqlparser/parser
test/java/net/sf/jsqlparser/test/select Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 23
23
options{
24
24
IGNORE_CASE=true ;
25
25
STATIC=false;
26
- DEBUG_PARSER=false ;
26
+ DEBUG_PARSER=true ;
27
27
DEBUG_LOOKAHEAD=false;
28
28
DEBUG_TOKEN_MANAGER=false;
29
29
// FORCE_LA_CHECK=true;
Original file line number Diff line number Diff line change @@ -1632,5 +1632,9 @@ public void testSelectJoin() throws JSQLParserException {
1632
1632
public void testSelectJoin2 () throws JSQLParserException {
1633
1633
assertSqlCanBeParsedAndDeparsed ("SELECT * FROM pg_constraint WHERE pg_attribute.attnum = ANY(pg_constraint.conkey)" );
1634
1634
}
1635
+
1636
+ public void testSelectOracleColl () throws JSQLParserException {
1637
+ assertSqlCanBeParsedAndDeparsed ("SELECT * FROM the_table tt WHERE TT.COL1 = lines(idx).COL1" );
1638
+ }
1635
1639
1636
1640
}
You can’t perform that action at this time.
0 commit comments