rbrooker
Member³
Hi Marco,
There is one thing that would make me very happy if you could implement. shouldn't be too hard, it's pretty minor.
when you use the beautifier, are you able to indent the parameters one tabstop (or nn spaces) on the line below instead of aligning them to where they fall on the line above?
This would also make sense when you are declaring a procedure/ function with a single parameter and you have parameter format set to one parameter per line
should be
Thoughts?
There is one thing that would make me very happy if you could implement. shouldn't be too hard, it's pretty minor.
Code:
BEGIN
dbms_audit_mgmt.clean_audit_trail(audit_trail_type => dbms_audit_mgmt.audit_trail_all
,use_last_arch_timestamp => FALSE);
EXCEPTION
WHEN OTHERS THEN
NULL;
END;
/
when you use the beautifier, are you able to indent the parameters one tabstop (or nn spaces) on the line below instead of aligning them to where they fall on the line above?
Code:
BEGIN
dbms_audit_mgmt.clean_audit_trail(
audit_trail_type => dbms_audit_mgmt.audit_trail_all
,use_last_arch_timestamp => FALSE);
EXCEPTION
WHEN OTHERS THEN
NULL;
END;
/
This would also make sense when you are declaring a procedure/ function with a single parameter and you have parameter format set to one parameter per line
Code:
PROCEDURE foo(bar IN VARCHAR2) IS
BEGIN
dbms_output.put_line('Foo says ' || bar);
END;
/
should be
Code:
PROCEDURE foo
(
bar IN VARCHAR2
) IS
BEGIN
dbms_output.put_line('Foo says ' || bar);
END;
/
Thoughts?