Skip to content

Commit

Permalink
Fix violation of G-8110
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippSalvisberg committed Aug 25, 2023
1 parent ffd91be commit aeec9b4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ create or replace package body department_api is
procedure ins(in_r_department in departments%rowtype) is
l_count pls_integer;
begin
select count(*)
select count(*) -- NOSONAR: a violation of G-8110 is a prerequisite for G-8120
into l_count
from departments
where department_id = in_r_department.department_id;
Expand Down

0 comments on commit aeec9b4

Please sign in to comment.