You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/core/types/ut_logical_suite.tps
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -22,11 +22,12 @@ create or replace type ut_logical_suite under ut_suite_item (
22
22
items ut_suite_items,
23
23
24
24
constructor function ut_logical_suite(
25
-
self in out nocopy ut_logical_suite,a_object_owner varchar2, a_object_name varchar2, a_name varchar2, a_description varchar2 := null, a_path varchar2
25
+
self in out nocopy ut_logical_suite,a_object_owner varchar2, a_object_name varchar2, a_name varchar2, a_path varchar2
26
26
) return self as result,
27
27
member function is_valid(self in out nocopy ut_logical_suite) return boolean,
28
28
member procedure add_item(self in out nocopy ut_logical_suite, a_item ut_suite_item),
29
29
overriding member procedure mark_as_skipped(self in out nocopy ut_logical_suite, a_listener in out nocopy ut_event_listener_base),
30
+
overriding member procedure set_default_rollback_type(self in out nocopy ut_logical_suite, a_rollback_type integer),
30
31
overriding member function do_execute(self in out nocopy ut_logical_suite, a_listener in out nocopy ut_event_listener_base) return boolean,
31
32
overriding member procedure calc_execution_result(self in out nocopy ut_logical_suite),
32
33
overriding member procedure mark_as_errored(self in out nocopy ut_logical_suite, a_listener in out nocopy ut_event_listener_base, a_error_stack_trace varchar2),
0 commit comments