You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using pg_formatter on create function statements, I would like to configure the indentation to be as shown in the first code block (where the RETURNS and AS keywords are at the same indentation level as the CREATE keyword) . Is there a way to configure this please?
Code to be formatted as
CREATE OR REPLACEFUNCTIONfunction_name(...)
RETURNS booleanAS $$
DECLARE
...
instead of:
CREATE OR REPLACEFUNCTIONfunction_name(...)
RETURNS booleanAS $$
DECLARE
...
The text was updated successfully, but these errors were encountered:
When using pg_formatter on create function statements, I would like to configure the indentation to be as shown in the first code block (where the
RETURNS
andAS
keywords are at the same indentation level as theCREATE
keyword) . Is there a way to configure this please?Code to be formatted as
instead of:
The text was updated successfully, but these errors were encountered: