Request: PL/SQL Beautifier "join ... using"

Hi.

I'm using PL/SQL Developer 7.1.5.1398.

I really like the PL/SQL Beautifier. But I don't like how you handle the using keyword in select statements. I looks like

Code:
select *
from table1 t1
join table1 t2
using (some_id);
A line break is inserted before using. I think in case of join ... using, the using should be on the same line as the join. This would be consistent with the formatting of join ... on.

Best regards
Martin Drescher
 
Back
Top