Bo Pedersen
Member²
If the package specification or body contains variable declarations with assignments at the outermost level then these assignments are not aligned by the beautifier. For example
create or replace package alignment_test is
short constant varchar2(30) := 'A short text';
much_longer constant varchar2(50) := 'A much longer text than before';
end alignment_test;
The types are also not aligned.
[This message has been edited by Bo Pedersen (edited 25 March 2003).]
create or replace package alignment_test is
short constant varchar2(30) := 'A short text';
much_longer constant varchar2(50) := 'A much longer text than before';
end alignment_test;
The types are also not aligned.
[This message has been edited by Bo Pedersen (edited 25 March 2003).]