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
{{ message }}
This repository was archived by the owner on Aug 30, 2024. It is now read-only.
produces this formatter result with the default settings:
update
emp
set sal = sal +10where sal <3000;
expected is
update emp
set sal = sal +10where sal <3000;
A line break after the update keyword is expected only when "Line Breaks -> SELECT/FROM/WHERE" is checked (breaksAfterSelect). Which produces this result, which is ok:
The following input
produces this formatter result with the default settings:
expected is
A line break after the
updatekeyword is expected only when "Line Breaks -> SELECT/FROM/WHERE" is checked (breaksAfterSelect). Which produces this result, which is ok: