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
CREATE EXTENSION
To reproduce attempt formatting this:
CREATE EXTENSION IF NOT EXISTS pgcrypto;
You'll get the following error:
Syntax Error: Unexpected "EXTENSION" Was expecting to see: "EXTERNAL", "FOREIGN", "FULLTEXT", "GLOBAL", "INDEX", "LOCAL", "MATERIALIZED", "OR", "RECURSIVE", "SEARCH", "SNAPSHOT", "SPATIAL", "TABLE", "TEMP", "TEMPORARY", "TRIGGER", "UNIQUE", "UNLOGGED", "VECTOR", "VIEW", "VIRTUAL", or whitespace --> undefined:1:8 | 1 | CREATE EXTENSION IF NOT EXISTS pgcrypto;
The text was updated successfully, but these errors were encountered:
Thanks for reporting. This happens simply because a large part of PostgreSQL is not yet implemented by the parser.
You can see a work-in-progress list of what is and isn't supported in here: #40
I've created a separate task for the CREATE/ALTER/DROP EXTENSION syntax support and will close this one.
CREATE/ALTER/DROP EXTENSION
Sorry, something went wrong.
No branches or pull requests
To reproduce attempt formatting this:
You'll get the following error:
The text was updated successfully, but these errors were encountered: