sql-formatter-org / sql-formatter

A whitespace formatter for different query languages
https://sql-formatter-org.github.io/sql-formatter/
MIT License
2.35k stars 403 forks source link

[FORMATTING] grant formatting issues #597

Open innermatrix opened 1 year ago

innermatrix commented 1 year ago

Input data

Which SQL and options did you provide as input?

grant select on t to r;

grant select, insert, update, delete on t to r;

Expected Output

grant select on t to r;

grant select, insert, update, delete on t to r;

Actual Output

grant
select
    on t to r;

grant
select
,
    insert,
update,
delete on t to r;

Usage

nene commented 1 year ago

Thanks for reporting.

Unfortunately this is another issue that's unlikely to get fixed with the current formatter architecture.