You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if a_coverage_options.file_mappings is not empty then
163
-
open l_cursor for l_sql using a_coverage_options.file_mappings,l_skip_objects;
170
+
open l_cursor for l_sql using a_coverage_options.file_mappings,a_coverage_options.exclude_schema_expr,a_coverage_options.exclude_object_expr,l_skip_objects;
164
171
elsif a_coverage_options.include_objects is not empty then
165
-
open l_cursor for l_sql using a_coverage_options.include_objects,l_skip_objects;
172
+
open l_cursor for l_sql using a_coverage_options.include_objects,a_coverage_options.exclude_schema_expr,a_coverage_options.exclude_object_expr,l_skip_objects;
166
173
elsif a_coverage_options.include_schema_expr is not null or a_coverage_options.include_object_expr is not null then
167
-
open l_cursor for l_sql using l_skip_objects;
174
+
open l_cursor for l_sql using a_coverage_options.include_schema_expr,a_coverage_options.include_object_expr,
open l_cursor for l_sql using a_coverage_options.schema_names,l_skip_objects;
178
+
open l_cursor for l_sql using a_coverage_options.schema_names,a_coverage_options.exclude_schema_expr,a_coverage_options.exclude_object_expr,l_skip_objects;
0 commit comments