We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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!
The text was updated successfully, but these errors were encountered:
So this is only about update statements? PRs are welcome. Grammar line 950 should be the start.
Sorry, something went wrong.
Add Delete / Update modifiers for MySQL JSQLParser#1254
2ed6c86
Add Delete / Update modifiers for MySQL #1254 (#1396)
7be5d8e
* Add Delete / Update modifiers for MySQL #1254 * fix codacy issues + pr return * simplify low_priority
Successfully merging a pull request may close this issue.
Uh oh!
There was an error while loading. Please reload this page.
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!
The text was updated successfully, but these errors were encountered: