PL/SQL Beatifier and CASE inline

ondra127

Member
Hello,
I would like to ask if is possible to choose an option in Beatifier, that keep CASE clause inline?

Like this

Select
1 as id,
case when 1=1 then 0 else 1 end as test,
from dual;

Thank you
Ondrej
 
Also, keeping when/then on the same line would also save me a lot of manual editing:

Code:
case
    when xxx then 1
    when yyy then 2
    when zzz then 3
    else 4
end
 
Back
Top