Beautifier and number declarations in record types

We're including both a precision and scale in our number declarations in our record types. When we run the Beautifier on the record type,
it ends up looking like this:

org NUMBER(4,
0),
bud_seq NUMBER(10,
0),
bud_pec VARCHAR2(6),

Whereas, we want it to look like this:

org NUMBER(4,0),
bud_seq NUMBER(10,0),
bud_pec VARCHAR2(6),

I can't seem to find an option in the beautifier rules that would correct this.
 
Last edited:
Back
Top