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
member function do_execute(self in ut_executable, a_item in out nocopy ut_suite_item, a_listener in out nocopy ut_event_listener_base) return boolean is
78
+
member function do_execute(self in out nocopy ut_executable, a_item in out nocopy ut_suite_item, a_listener in out nocopy ut_event_listener_base) return boolean is
Copy file name to clipboardExpand all lines: source/core/types/ut_executable.tps
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -22,16 +22,19 @@ create or replace type ut_executable force authid current_user as object(
22
22
owner_name varchar2(250 char),
23
23
object_name varchar2(250 char),
24
24
procedure_name varchar2(250 char),
25
+
error_backtrace varchar2(4000),
26
+
error_stack varchar2(4000),
27
+
serveroutput clob,
25
28
constructor function ut_executable( self in out nocopy ut_executable, a_context ut_suite_item, a_procedure_name varchar2, a_associated_event_name varchar2) return self as result,
26
29
member function is_valid return boolean,
27
30
member function is_defined return boolean,
28
31
member function form_name return varchar2,
29
-
member procedure do_execute(self in ut_executable, a_item in out nocopy ut_suite_item, a_listener in out nocopy ut_event_listener_base),
32
+
member procedure do_execute(self in out nocopy ut_executable, a_item in out nocopy ut_suite_item, a_listener in out nocopy ut_event_listener_base),
30
33
/**
31
34
* executes the defines executable
32
35
* returns true if executed without exceptions
33
36
* returns false if exceptions were raised
34
37
*/
35
-
member function do_execute(self in ut_executable, a_item in out nocopy ut_suite_item, a_listener in out nocopy ut_event_listener_base) return boolean
38
+
member function do_execute(self in out nocopy ut_executable, a_item in out nocopy ut_suite_item, a_listener in out nocopy ut_event_listener_base) return boolean
0 commit comments