File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11whenever sqlerror exit failure rollback
22whenever oserror exit failure rollback
33
4+ prompt Installing utplsql framework
45@@types/ ut_object .tps
56@@types/ ut_objects_list .tps
67@@types/ ut_composite_object .tps
@@ -34,14 +35,16 @@ whenever oserror exit failure rollback
3435@@ut_assert .pkb
3536@@ut_suite_manager .pkb
3637
37- select * from user_errors where name not like ' BIN$%' ;
38+
39+ prompt Validating installation
40+ select * from user_errors where name not like ' BIN$%' and name like ' UT\_ %' escape ' \' ;
3841
3942declare
4043 l_cnt integer;
4144begin
4245 select count(1)
4346 into l_cnt
44- from user_errors where name not like ' BIN$%' ;
47+ from user_errors where name not like ' BIN$%' and name like ' UT\_% ' escape ' \ ' ;
4548 if l_cnt > 0 then
4649 raise_application_error(-20000, ' Not all sources were successfully installed.' );
4750 end if;
You can’t perform that action at this time.
0 commit comments