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

Skip to content

Commit 8370aa9

Browse files
committed
commit changes
1 parent 0c57a9c commit 8370aa9

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

source/core/coverage/ut_coverage.pkb

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -122,13 +122,11 @@ create or replace package body ut_coverage is
122122

123123

124124
if a_coverage_options.exclude_schema_expr is not null then
125-
l_regex_exc_filters := l_regex_exc_filters||q'[and not regexp_like(s.owner,']'||a_coverage_options.exclude_schema_expr||q'[,'i')
126-
]';
125+
l_regex_exc_filters := l_regex_exc_filters||q'[ and not regexp_like(s.owner,']'||a_coverage_options.exclude_schema_expr||q'[,'i')]';
127126
end if;
128127

129128
if a_coverage_options.exclude_object_expr is not null then
130-
l_regex_exc_filters := l_regex_exc_filters||q'[and not regexp_like(s.name,']'||a_coverage_options.exclude_object_expr||q'[,'i')
131-
]';
129+
l_regex_exc_filters := l_regex_exc_filters||q'[ and not regexp_like(s.name,']'||a_coverage_options.exclude_object_expr||q'[,'i')]';
132130
end if;
133131

134132

0 commit comments

Comments
 (0)