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 OR REPLACE ...
For the following input:
CREATE OR REPLACE FUNCTION foo() RETURNS TEXT
the following formatted query is returned:
The same applies for all CREATE OR REPLACE operations, e.g. procedures, aggregates, etc.
CREATE OR REPLACE
All sql formatters i know of do not add the new line, the formatted query should be:
CREATE OR REPLACE FUNCTION foo () RETURNS TEXT
The text was updated successfully, but these errors were encountered:
I believe this is closely related to #37
Sorry, something went wrong.
No branches or pull requests
For the following input:
the following formatted query is returned:
The same applies for all
CREATE OR REPLACE
operations, e.g. procedures, aggregates, etc.All sql formatters i know of do not add the new line, the formatted query should be:
The text was updated successfully, but these errors were encountered: