Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74ec9a1 commit 44d61d9Copy full SHA for 44d61d9
1 file changed
source/core/ut_metadata.pkb
@@ -77,6 +77,9 @@ create or replace package body ut_metadata as
77
78
-- expect both package and body to be valid
79
return l_cnt = 1;
80
+ exception
81
+ when others then
82
+ return false;
83
end;
84
85
function procedure_exists(a_owner_name varchar2, a_package_name in varchar2, a_procedure_name in varchar2)
@@ -101,6 +104,9 @@ create or replace package body ut_metadata as
101
104
102
105
--expect one method only for the package with that name.
103
106
107
108
109
110
111
112
function get_source_definition_line(a_owner varchar2, a_object_name varchar2, a_line_no integer) return varchar2 is
0 commit comments