Beautifier problem

ScottMattes

Member³
start with this

Code:
select this
from that
where something = something_else;
and beauifier gives

Code:
SELECT THIS
  FROM THAT
 WHERE SOMETHING = SOMETHING_ELSE;
add a hint

Code:
select /*+ rule */ this
from that
where something = something_else;
and beautifier gives

Code:
SELECT /*+ rule */
 THIS
  FROM THAT
 WHERE SOMETHING = SOMETHING_ELSE;
ugh!

I think it should give this

Code:
SELECT /*+ rule */
       THIS
  FROM THAT
 WHERE SOMETHING = SOMETHING_ELSE;
 
Back
Top