Hello, is there some way to set the package indent to 0, but still have ident 2 in other places?
I want this:
create or replace package body
function mgrname(p_empno in emp.empno%type) return emp.ename%type is
result emp.ename%type;
i integer;
begin
result := null;
i := 1;
if...