Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bb8d967

Browse files
committed
Added new elements to the install/uninstall scripts.
1 parent 66f4135 commit bb8d967

2 files changed

Lines changed: 33 additions & 1 deletion

File tree

source/install.sql

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,20 @@ whenever oserror exit failure rollback
7171
@@expectations/data_values/ut_data_value_boolean.tps
7272
@@expectations/data_values/ut_data_value_clob.tps
7373
@@expectations/data_values/ut_data_value_date.tps
74+
@@expectations/data_values/ut_data_value_dsinterval.tps
7475
@@expectations/data_values/ut_data_value_number.tps
7576
@@expectations/data_values/ut_data_value_refcursor.tps
7677
@@expectations/data_values/ut_data_value_timestamp.tps
7778
@@expectations/data_values/ut_data_value_timestamp_tz.tps
7879
@@expectations/data_values/ut_data_value_timestamp_ltz.tps
7980
@@expectations/data_values/ut_data_value_varchar2.tps
81+
@@expectations/data_values/ut_data_value_yminterval.tps
8082
@@expectations/matchers/ut_matcher.tps
8183
@@expectations/matchers/be_false.tps
84+
@@expectations/matchers/be_greater_or_equal.tps
85+
@@expectations/matchers/be_greater_than.tps
86+
@@expectations/matchers/be_less_or_equal.tps
87+
@@expectations/matchers/be_less_than.tps
8288
@@expectations/matchers/be_like.tps
8389
@@expectations/matchers/be_not_null.tps
8490
@@expectations/matchers/be_null.tps
@@ -92,25 +98,33 @@ whenever oserror exit failure rollback
9298
@@expectations/ut_expectation_boolean.tps
9399
@@expectations/ut_expectation_clob.tps
94100
@@expectations/ut_expectation_date.tps
101+
@@expectations/ut_expectation_dsinterval.tps
95102
@@expectations/ut_expectation_number.tps
96103
@@expectations/ut_expectation_refcursor.tps
97104
@@expectations/ut_expectation_timestamp.tps
98105
@@expectations/ut_expectation_timestamp_ltz.tps
99106
@@expectations/ut_expectation_timestamp_tz.tps
100107
@@expectations/ut_expectation_varchar2.tps
108+
@@expectations/ut_expectation_yminterval.tps
101109
@@expectations/data_values/ut_data_value_anydata.tpb
102110
@@expectations/data_values/ut_data_value_blob.tpb
103111
@@expectations/data_values/ut_data_value_boolean.tpb
104112
@@expectations/data_values/ut_data_value_clob.tpb
105113
@@expectations/data_values/ut_data_value_date.tpb
114+
@@expectations/data_values/ut_data_value_dsinterval.tpb
106115
@@expectations/data_values/ut_data_value_number.tpb
107116
@@expectations/data_values/ut_data_value_refcursor.tpb
108117
@@expectations/data_values/ut_data_value_timestamp.tpb
109118
@@expectations/data_values/ut_data_value_timestamp_tz.tpb
110119
@@expectations/data_values/ut_data_value_timestamp_ltz.tpb
111120
@@expectations/data_values/ut_data_value_varchar2.tpb
121+
@@expectations/data_values/ut_data_value_yminterval.tpb
112122
@@expectations/matchers/ut_matcher.tpb
113123
@@expectations/matchers/be_false.tpb
124+
@@expectations/matchers/be_greater_or_equal.tpb
125+
@@expectations/matchers/be_greater_than.tpb
126+
@@expectations/matchers/be_less_or_equal.tpb
127+
@@expectations/matchers/be_less_than.tpb
114128
@@expectations/matchers/be_like.tpb
115129
@@expectations/matchers/be_not_null.tpb
116130
@@expectations/matchers/be_null.tpb
@@ -124,14 +138,16 @@ whenever oserror exit failure rollback
124138
@@expectations/ut_expectation_boolean.tpb
125139
@@expectations/ut_expectation_clob.tpb
126140
@@expectations/ut_expectation_date.tpb
141+
@@expectations/ut_expectation_dsinterval.tpb
127142
@@expectations/ut_expectation_number.tpb
128143
@@expectations/ut_expectation_refcursor.tpb
129144
@@expectations/ut_expectation_timestamp.tpb
130145
@@expectations/ut_expectation_timestamp_ltz.tpb
131146
@@expectations/ut_expectation_timestamp_tz.tpb
132147
@@expectations/ut_expectation_varchar2.tpb
148+
@@expectations/ut_expectation_yminterval.tpb
133149

134-
--expecatations interface
150+
--expectations interface
135151
@@expectations/ut.pks
136152
@@expectations/ut.pkb
137153

source/uninstall.sql

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ drop package ut_assert;
88

99
drop package ut;
1010

11+
drop type ut_expectation_yminterval;
12+
1113
drop type ut_expectation_varchar2;
1214

1315
drop type ut_expectation_timestamp_tz;
@@ -20,6 +22,8 @@ drop type ut_expectation_refcursor;
2022

2123
drop type ut_expectation_number;
2224

25+
drop type ut_expectation_dsinterval;
26+
2327
drop type ut_expectation_date;
2428

2529
drop type ut_expectation_clob;
@@ -48,10 +52,20 @@ drop type be_not_null;
4852

4953
drop type be_like;
5054

55+
drop type be_greater_or_equal;
56+
57+
drop type be_greater_than;
58+
59+
drop type be_less_or_equal;
60+
61+
drop type be_less_than;
62+
5163
drop type be_false;
5264

5365
drop type ut_matcher;
5466

67+
drop type ut_data_value_yminterval;
68+
5569
drop type ut_data_value_varchar2;
5670

5771
drop type ut_data_value_timestamp_tz;
@@ -64,6 +78,8 @@ drop type ut_data_value_number;
6478

6579
drop type ut_data_value_refcursor;
6680

81+
drop type ut_data_value_dsinterval;
82+
6783
drop type ut_data_value_date;
6884

6985
drop type ut_data_value_clob;

0 commit comments

Comments
 (0)