rules repository

G-2140

🆓
Warning

Never initialize variables with NULL.

Reason

Variables are initialized to null by default.

Example

Non-Compliant Example

declare
   l_note big_string_type := null;
begin
   sys.dbms_output.put_line(l_note);
end;
/
Issues
LineColumnMessage
227Unnecessary NULL assignment.

Compliant Solution - ★★★★★

declare
   l_note big_string_type;
begin
   sys.dbms_output.put_line(l_note);
end;
/

References