We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dde810 commit 9d5a3bbCopy full SHA for 9d5a3bb
docs/4-language-usage/9-function-usage/g-9030.md
@@ -23,8 +23,7 @@ create or replace package body employee_api is
23
co_dob_str constant type_up.date_string := in_dob_str;
24
begin
25
update employees
26
- set date_of_birth = to_date(co_dob_str,'FXYYYY-MM-DD' -- NOSONAR: G-1050 must be a literal
27
-)
+ set date_of_birth = to_date(co_dob_str,'FXYYYY-MM-DD') -- violates also G-1050
28
where employee_id = co_employee_id;
29
end set_dob;
30
end employee_api;
0 commit comments