Skip to content

Commit 873c073

Browse files
committed
fix: exception
1 parent 218167f commit 873c073

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

noharm-public.sql

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -341,8 +341,7 @@ BEGIN
341341
into V_SCHEMA_CONFIG
342342
from schemaconfig where schema_name = P_PARAMS.nome_schema;
343343
exception
344-
when insufficient_privilege then
345-
select null into V_SCHEMA_CONFIG;
344+
when insufficient_privilege then NULL;
346345
end;
347346

348347
/**
@@ -953,8 +952,7 @@ BEGIN
953952
into V_SCHEMA_CONFIG
954953
from schemaconfig where schema_name = P_PARAMS.nome_schema;
955954
exception
956-
when insufficient_privilege then
957-
select null into V_SCHEMA_CONFIG;
955+
when insufficient_privilege then NULL;
958956
end;
959957

960958
/**

0 commit comments

Comments
 (0)