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

Skip to content

Commit 011970f

Browse files
authored
Apply suggestions from code review
1 parent a53cefa commit 011970f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

source/core/ut_suite_cache_manager.pkb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,12 +258,12 @@ create or replace package body ut_suite_cache_manager is
258258
from table(a_suite_items) c
259259
where exists (
260260
select 1 from included_tags t
261-
where t.path||'.' like c.path || '.%' /*all parents and self*/
262-
or c.path||'.' like t.path || '.%' /*all children and self*/
261+
where t.path||'.' like c.path || '.%' /*all ancestors and self*/
262+
or c.path||'.' like t.path || '.%' /*all descendants and self*/
263263
)
264264
and not exists (
265265
select 1 from excluded_tags t
266-
where c.path||'.' like t.path || '.%' /*all children and self*/
266+
where c.path||'.' like t.path || '.%' /*all descendants and self*/
267267
);
268268
return l_suite_tags;
269269
end;

0 commit comments

Comments
 (0)