Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge remote-tracking branch 'origin/develop' into feature/ddl_trigge…
…r_for_annotations

# Conflicts:
#	source/core/annotations/ut_annotation_manager.pkb
#	source/core/ut_suite_manager.pkb
  • Loading branch information
jgebal committed Jun 6, 2019
commit 29d74a1b1dcd8ab3e956444a890153dfabd356a4
10 changes: 8 additions & 2 deletions source/core/annotations/ut_annotation_manager.pkb
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,12 @@ create or replace package body ut_annotation_manager as
and i.object_type = :a_object_type]';
open l_rows for l_cursor_text using a_object_owner, a_object_type;
else
if a_object_owner is not null then
l_object_owner := sys.dbms_assert.qualified_sql_name(a_object_owner);
end if;
if a_object_type is not null then
l_object_type := sys.dbms_assert.qualified_sql_name(a_object_type);
end if;
l_cursor_text :=
q'[select ]'||l_ut_owner||q'[.ut_annotation_obj_cache_info(
object_owner => o.owner,
Expand All @@ -89,8 +95,8 @@ create or replace package body ut_annotation_manager as
on o.owner = i.object_owner
and o.object_name = i.object_name
and o.object_type = i.object_type
where o.owner = ']'||a_object_owner||q'['
and o.object_type = ']'||a_object_type||q'['
where o.owner = ']'||l_object_owner||q'['
and o.object_type = ']'||l_object_type||q'['
and ]'
|| case
when a_parse_date is null
Expand Down
2 changes: 1 addition & 1 deletion source/core/ut_suite_manager.pkb
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ create or replace package body ut_suite_manager is
if a_procedure_name is not null then
l_procedure_name := sys.dbms_assert.qualified_sql_name(a_procedure_name);
end if;

refresh_cache(l_owner_name);

execute immediate q'[
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.