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
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
create or replace type ut_executable under ut_event_item(
1
+
create or replace type ut_executable force under ut_event_item(
2
2
/*
3
3
utPLSQL - Version 3
4
4
Copyright 2016 - 2017 utPLSQL Project
@@ -26,7 +26,8 @@ create or replace type ut_executable under ut_event_item(
26
26
error_stack varchar2(4000),
27
27
serveroutput clob,
28
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,
29
-
member function is_valid(self in out nocopy ut_executable) return boolean,
29
+
member function is_invalid(self in out nocopy ut_executable) return boolean,
30
+
member function is_defined(self in out nocopy ut_executable) return boolean,
30
31
member function form_name return varchar2,
31
32
member procedure do_execute(self in out nocopy ut_executable, a_item in out nocopy ut_suite_item),
0 commit comments