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
As discussed in #365
If I write a drop table statement, it is technically correct code:
But it creates the following error:
Dropping a table may break existing clients.
Steps to reproduce the behavior, please provide code snippets or a repository:
DROP TABLE IF EXISTS public.groups; DROP TABLE IF EXISTS groups;
Error should be a hint or a warning instead of an error since this statement may be intended and therefore correct.
Another option could the intended and planned pls annotation: // @pg-ignore
// @pg-ignore
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug report
Describe the bug
As discussed in #365
If I write a drop table statement, it is technically correct code:
But it creates the following error:
To Reproduce
Steps to reproduce the behavior, please provide code snippets or a repository:
Expected behavior
Error should be a hint or a warning instead of an error since this statement may be intended and therefore correct.
System information
Additional context
Another option could the intended and planned pls annotation:
// @pg-ignore
The text was updated successfully, but these errors were encountered: