Skip to content

Commit 60b7708

Browse files
committedDec 17, 2022
disable G-8210 and G-9030 violations
1 parent c4e0560 commit 60b7708

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎database/utils/view/plscope_identifiers.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ create or replace view plscope_identifiers as
412412
tree.col,
413413
tree.procedure_name,
414414
tree.procedure_scope,
415-
cast(
415+
cast( -- NOSONAR: G-9030, false positive, will be truncated, default cannot be applied here
416416
-- left indent name_usage according to path_len, wrapping to the left
417417
-- if necessary so as not to exceed a limit of 250 characters
418418
case
@@ -520,7 +520,7 @@ create or replace view plscope_identifiers as
520520
refs.col as ref_col, -- decl_col
521521
tree.origin_con_id
522522
from tree_plus tree
523-
left join sys.dba_identifiers refs -- must not used pls_ids to consider all identifiers
523+
left join sys.dba_identifiers refs -- must not use pls_ids to consider all identifiers, NOSONAR: G-8210
524524
on refs.signature = tree.signature
525525
and refs.usage = 'DECLARATION'
526526
left join src

0 commit comments

Comments
 (0)
Please sign in to comment.