Skip to content

Commit

Permalink
Fix violations of G-7460
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippSalvisberg committed Aug 25, 2023
1 parent 349b915 commit 87d1aa7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/4-language-usage/5-exception-handling/g-5060.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The form that this failure takes does not necessarily need to be an exception. W

``` sql
create or replace package body department_api is
function name_by_id(in_id in departments.department_id%type)
function name_by_id(in_id in departments.department_id%type) -- NOSONAR: non-deterministic
return departments.department_name%type is
co_id constant departments.department_id%type := in_id;
l_department_name departments.department_name%type;
Expand All @@ -35,7 +35,7 @@ end department_api;

``` sql
create or replace package body department_api is
function name_by_id(in_id in departments.department_id%type)
function name_by_id(in_id in departments.department_id%type) -- NOSONAR: non-deterministic
return departments.department_name%type is
co_id constant departments.department_id%type := in_id;
l_department_name departments.department_name%type;
Expand Down

0 comments on commit 87d1aa7

Please sign in to comment.