Describe the bug
Update ignore and delete ignore statements throw exception when parsing.
To Reproduce
Steps to reproduce the behavior:
-
Example SQL
update ignore tRequirement set VendorItem=? where cn=@cn and VendorItem=?
-
Parsing this SQL using JSqlParser with this statements
SimpleNode node = (SimpleNode) CCJSqlParserUtil.parseAST(sqlInput);
-
Exception
Encountered unexpected token: "ignore" "IGNORE"
at line 1, column 8.
Expected behavior
Expected to parse similarly to statements without the "ignore" keyword
System
- MySQL 8.0
- Java Version - JDK 8
- JSqlParser version - 4.1
Thanks for all your work on this library, it's really great!
Describe the bug
Update ignore and delete ignore statements throw exception when parsing.
To Reproduce
Steps to reproduce the behavior:
Example SQL
update ignore tRequirement set VendorItem=? where cn=@cn and VendorItem=?
Parsing this SQL using JSqlParser with this statements
SimpleNode node = (SimpleNode) CCJSqlParserUtil.parseAST(sqlInput);
Exception
Encountered unexpected token: "ignore" "IGNORE"
at line 1, column 8.
Expected behavior
Expected to parse similarly to statements without the "ignore" keyword
System
Thanks for all your work on this library, it's really great!