File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
main/jjtree/net/sf/jsqlparser/parser
test/java/net/sf/jsqlparser/test/select Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -664,6 +664,7 @@ String RelObjectName() :
664
664
| tk=<K_ROW> | tk=<K_ROWS> | tk=<K_SIBLINGS> | tk=<K_VALUE> | tk=<K_XML>
665
665
| tk=<K_COLUMN> | tk=<K_REPLACE> | tk=<K_TRUNCATE> | tk=<K_KEY> | tk=<K_ANY>
666
666
| tk=<K_OPEN> | tk=<K_OVER> | tk=<K_VALUES> | tk=<K_PERCENT> | tk=<K_PRIOR>
667
+ | tk=<K_SEPARATOR>
667
668
)
668
669
669
670
{ return tk.image; }
Original file line number Diff line number Diff line change @@ -2071,4 +2071,8 @@ public void testTableFunctionWithAlias() throws Exception {
2071
2071
public void testIssue151_tableFunction () throws JSQLParserException {
2072
2072
assertSqlCanBeParsedAndDeparsed ("SELECT * FROM tables a LEFT JOIN getdata() b ON a.id = b.id" );
2073
2073
}
2074
+
2075
+ public void testIssue217_keywordSeparator () throws JSQLParserException {
2076
+ assertSqlCanBeParsedAndDeparsed ("SELECT Separator" );
2077
+ }
2074
2078
}
You can’t perform that action at this time.
0 commit comments