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 483f9d7 commit 77f9d21Copy full SHA for 77f9d21
docs/4-language-usage/9-function-usage/g-9020.md
@@ -42,8 +42,8 @@ create or replace package body employee_api is
42
update employees
43
set salary = to_number(
44
co_salary default null on conversion error
45
- ,'99999999999999999999.99999' -- NOSONAR: G-1050 must be a literal
46
- ,q'[nls_numeric_characters='.,']' -- NOSONAR: G-1050 must be a literal
+ ,'99999999999999999999.99999'
+ ,q'[nls_numeric_characters='.,']'
47
)
48
where employee_id = co_employee_id;
49
end set_dob;
0 commit comments