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/annotations/ut_annotation_manager.pkb
+33-2Lines changed: 33 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -99,18 +99,32 @@ create or replace package body ut_annotation_manager as
99
99
return l_result;
100
100
end;
101
101
102
+
function get_annotations_list return ut_varchar2_list pipelined is
103
+
begin
104
+
for i in 1 .. ut_utils.gc_supported_annotations.count loop
105
+
pipe row( ut_utils.gc_supported_annotations(i) );
106
+
end loop;
107
+
end get_annotations_list;
108
+
102
109
function get_sources_to_annotate(a_object_owner varchar2, a_object_type varchar2, a_objects_to_refresh ut_annotation_objs_cache_info) return sys_refcursor is
0 commit comments