rules repository

G-4260

🆓
Warning

Avoid inverting boolean conditions with NOT.

Reason

It is more readable to use the opposite comparison operator instead of inverting the comparison with not.

Example

Non-Compliant Example

declare
   l_color types_up.color_code_type;
begin
   if not l_color != constants_up.co_red then
      my_package.do_red();
   end if;
end;
/
Issues
LineColumnMessage
47Inverting boolean condition.

Compliant Solution - ★★★★★

declare
   l_color types_up.color_code_type;
begin
   if l_color = constants_up.co_red then
      my_package.do_red();
   end if;
end;
/

References