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 26cd400 commit b9bb600Copy full SHA for b9bb600
1 file changed
source/install.sql
@@ -34,7 +34,18 @@ whenever oserror exit failure rollback
34
@@ut_assert.pkb
35
@@ut_suite_manager.pkb
36
37
-select * from user_errors
38
-where name not like 'BIN$%';
+select * from user_errors where name not like 'BIN$%';
+
39
+declare
40
+ l_cnt integer;
41
+begin
42
+ select count(1)
43
+ into l_cnt
44
+ from user_errors where name not like 'BIN$%';
45
+ if l_cnt > 0 then
46
+ raise_application_error(-20000, 'Not all sources were successfully installed.');
47
+ end if;
48
+end;
49
+/
50
51
exit success
0 commit comments