Closed
Description
DB : mysql5.7
JSqlParser : 4.3
public static void main(String[] args) {
String sql = "select database() from dual";
try {
Statement statement = CCJSqlParserUtil.parse(sql);
System.out.println(statement.toString());
} catch (JSQLParserException e) {
throw new RuntimeException(e.getCause() + "Failed to process, Error SQL:" + sql);
}
}
run result:
Exception in thread "main" java.lang.RuntimeException: net.sf.jsqlparser.parser.ParseException: Encountered unexpected token: "database" "DATABASE"
at line 1, column 8.
Was expecting one of:
"*"
"STRAIGHT_JOIN"
Failed to process, Error SQL:select database() from dual
at com.ruoyi.common.Test.main(Test.java:15)
Greetings.
this bug not fixed on release-4.3, but Why does it work normally with 4.3-Snapshot ?
Metadata
Metadata
Assignees
Labels
No labels