File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments