Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a53cefa commit 011970fCopy full SHA for 011970f
1 file changed
source/core/ut_suite_cache_manager.pkb
@@ -258,12 +258,12 @@ create or replace package body ut_suite_cache_manager is
258
from table(a_suite_items) c
259
where exists (
260
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*/
+ where t.path||'.' like c.path || '.%' /*all ancestors and self*/
+ or c.path||'.' like t.path || '.%' /*all descendants and self*/
263
)
264
and not exists (
265
select 1 from excluded_tags t
266
- where c.path||'.' like t.path || '.%' /*all children and self*/
+ where c.path||'.' like t.path || '.%' /*all descendants and self*/
267
);
268
return l_suite_tags;
269
end;
0 commit comments