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
Line | Column | Message |
---|---|---|
2 | 27 |
★★★★★
Compliant Solution -
declare l_note big_string_type; begin sys.dbms_output.put_line(l_note); end; /
References
- same as Trivadis G-2140
- same as plsql:InitializeWithNullCheck