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_executable.tps
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -18,14 +18,14 @@ create or replace type ut_executable under ut_event_item(
18
18
/**
19
19
* The name of the event to be executed before and after the executable is invoked
20
20
*/
21
-
associated_event_name varchar2(250 char),
21
+
executable_type varchar2(250 char),
22
22
owner_name varchar2(250 char),
23
23
object_name varchar2(250 char),
24
24
procedure_name varchar2(250 char),
25
25
error_backtrace varchar2(4000),
26
26
error_stack varchar2(4000),
27
27
serveroutput clob,
28
-
constructor function ut_executable( self in out nocopy ut_executable, a_owner varchar2, a_package varchar2, a_procedure_name varchar2, a_associated_event_name varchar2) return self as result,
28
+
constructor function ut_executable( self in out nocopy ut_executable, a_owner varchar2, a_package varchar2, a_procedure_name varchar2, a_executable_type varchar2) return self as result,
29
29
member function is_invalid(self in out nocopy ut_executable) return boolean,
30
30
member function is_defined(self in out nocopy ut_executable) return boolean,
0 commit comments