-
Notifications
You must be signed in to change notification settings - Fork 189
Expand file tree
/
Copy pathinstall.sql
More file actions
64 lines (57 loc) · 1.53 KB
/
install.sql
File metadata and controls
64 lines (57 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
prompt Installing utplsql framework
whenever sqlerror exit failure rollback
whenever oserror exit failure rollback
@@types/ut_object.tps
@@types/ut_objects_list.tps
@@types/ut_composite_object.tps
@@types/ut_executable.tps
@@types/ut_assert_result.tps
@@types/ut_assert_list.tps
@@types/ut_reporter.tps
@@types/ut_reporters_list.tps
@@types/ut_composite_reporter.tps
@@types/ut_test_object.tps
@@types/ut_test.tps
@@types/ut_test_suite.tps
@@types/ut_reporter_decorator.tps
@@types/ut_dbms_output_suite_reporter.tps
@@ut_utils.pks
@@ut_metadata.pks
@@ut_assert_processor.pks
@@types/ut_assertion.tps
@@types/ut_assertion_varchar.tps
@@ut_assert.pks
@@ut_annotations.pks
@@ut_suite_manager.pks
@@ut_utils.pkb
@@types/ut_assert_result.tpb
@@types/ut_reporter.tpb
@@types/ut_object.tpb
@@types/ut_composite_object.tpb
@@types/ut_test.tpb
@@types/ut_test_suite.tpb
@@types/ut_executable.tpb
@@types/ut_composite_reporter.tpb
@@types/ut_reporter_decorator.tpb
@@types/ut_dbms_output_suite_reporter.tpb
@@ut_metadata.pkb
@@ut_assert_processor.pkb
@@types/ut_assertion.tpb
@@types/ut_assertion_varchar.tpb
@@ut_assert.pkb
@@ut_annotations.pkb
@@ut_suite_manager.pkb
prompt Validating installation
select * from user_errors where name not like 'BIN$%' and name like 'UT\_%' escape '\';
declare
l_cnt integer;
begin
select count(1)
into l_cnt
from user_errors where name not like 'BIN$%' and name like 'UT\_%' escape '\';
if l_cnt > 0 then
raise_application_error(-20000, 'Not all sources were successfully installed.');
end if;
end;
/
exit success