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
A numeric database suffix combined with a numeric table name prefix causes a false positive SQL editor error.
Steps to reproduce the behavior:
INSERT INTO foo_1.2_bar SELECT * FROM foo;
UPDATE foo_1.2_bar SET a = 1;
Unexpected token (near .2)
Neither of these should flag as syntax errors
The bug does not affect SELECTs e.g. SELECT * FROM foo_1.2_bar;
SELECT * FROM foo_1.2_bar;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
A numeric database suffix combined with a numeric table name prefix causes a false positive SQL editor error.
To Reproduce
Steps to reproduce the behavior:
INSERT INTO foo_1.2_bar SELECT * FROM foo;
or
UPDATE foo_1.2_bar SET a = 1;
Expected behavior
Neither of these should flag as syntax errors
The bug does not affect SELECTs e.g.
SELECT * FROM foo_1.2_bar;
Screenshots
Server configuration
Client configuration
The text was updated successfully, but these errors were encountered: