Beautifier bug?

Milt

Member
In Developer v6.0.3 there appears to be a bug in the beautifier. In the DML options when:

left align keyworks is unchecked,
split at zero-level AND/OR is checked,
AND/OR under where clause is checked

the example is show correctly as:
select ...
from ...
where ...
and ...

When running the beautifier against a script with the above options in the DML it looks like:
select ...
from ...
where ...
and ...

The 'and' is left justified instead of right justified.

Is this a bug or am I missing something in the options?
 
Works okay for me:

Code:
select a
from b
where c = d
and e = f
is formatted as:

Code:
select a
  from b
 where c = d
   and e = f
Can you send me your rules file?
 
Back
Top