We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
TableName
Identifier '.' '*'
In fix of #188, the following new rule was introduced:
parser/parser.y
Lines 4886 to 4898 in 690470b
but this affects all uses of TableName and leads to some non-sense syntax being accepted, e.g.
ANALYZE TABLE a.*; -- should throw syntax error, but accepted and treated as equivalent to ANALYZE TABLE a;
We should create a separate rule for DELETE statement instead, and revert the TableName change.
The text was updated successfully, but these errors were encountered:
This issue seems be fixed in #521 . I've added some related test cases in that pr. PTAL. @kennytm
Sorry, something went wrong.
DeleteStmt
Successfully merging a pull request may close this issue.
In fix of #188, the following new rule was introduced:
parser/parser.y
Lines 4886 to 4898 in 690470b
but this affects all uses of TableName and leads to some non-sense syntax being accepted, e.g.
We should create a separate rule for DELETE statement instead, and revert the TableName change.
The text was updated successfully, but these errors were encountered: