File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
main/jjtree/net/sf/jsqlparser/parser
test/java/net/sf/jsqlparser/statement/select Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -1333,7 +1333,7 @@ String RelObjectNameWithoutValue() :
1333
1333
| tk=<K_TEMP> | tk=<K_TEMPORARY> | tk=<K_TO> | tk=<K_TYPE> | tk=<K_ISNULL>
1334
1334
| tk=<K_ZONE> | tk=<K_COLUMNS> | tk=<K_DESCRIBE> | tk=<K_FN> | tk=<K_PATH>
1335
1335
| tk=<K_DATE_LITERAL> | tk=<K_NEXTVAL> | tk=<K_TRUE> | tk=<K_FALSE> | tk=<K_DUPLICATE>
1336
- | tk=<K_READ> | tk=<K_SCHEMA> | tk=<K_SIZE> | tk=<K_SESSION>
1336
+ | tk=<K_READ> | tk=<K_SCHEMA> | tk=<K_SIZE> | tk=<K_SEQUENCE> | tk=< K_SESSION>
1337
1337
| tk=<K_VIEW> | tk=<K_NOLOCK> | tk=<K_VALIDATE> | tk=<K_CYCLE> | tk=<K_OF> | tk=<K_EXCLUDE>
1338
1338
/*| tk=<K_PLACING> | tk=<K_BOTH> | tk=<K_LEADING> | tk=<K_TRAILING> */
1339
1339
| tk=<K_FORMAT> | tk=<K_DIV>
Original file line number Diff line number Diff line change @@ -4326,4 +4326,9 @@ public void testIssue1062_2() throws JSQLParserException {
4326
4326
public void testIssue1068 () throws JSQLParserException {
4327
4327
assertSqlCanBeParsedAndDeparsed ("SELECT t2.c AS div" );
4328
4328
}
4329
+
4330
+ @ Test
4331
+ public void testKeywordSequenceIssue1075 () throws JSQLParserException {
4332
+ assertSqlCanBeParsedAndDeparsed ("SELECT a.sequence FROM all_procedures a" );
4333
+ }
4329
4334
}
You can’t perform that action at this time.
0 commit comments