What is the proper way to call a subscript?
TOAD 12.10:
BEGIN
dbms_output.put_line(‘test’);
END;
/
@subscript.sql
TOAD 12.11 formatter inserts a white space
BEGIN
dbms_output.put_line(‘test’);
END;
/
@ subscript.sql
Script engine and sqlplus are able to handle both.
What was the reasoning for inserting a white space here?
What is more appropriate?