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
Copy file name to clipboardExpand all lines: client_source/sqlplus/ut_run.sql
+12-11Lines changed: 12 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -231,7 +231,7 @@ declare
231
231
return l_call_params;
232
232
end;
233
233
234
-
function parse_paths_param(a_params ut_varchar2_list) return varchar2 is
234
+
function parse_suite_paths_param(a_params ut_varchar2_list) return varchar2 is
235
235
l_paths varchar2(4000);
236
236
begin
237
237
begin
@@ -258,7 +258,7 @@ declare
258
258
return 'false';
259
259
end;
260
260
261
-
function parse_path_param(a_params ut_varchar2_list, a_param_namevarchar2, a_default_valuevarchar2) return varchar2 is
261
+
function parse_source_files_path_param(a_params ut_varchar2_list, a_param_name varchar2) return varchar2 is
262
262
l_path varchar2(4000);
263
263
begin
264
264
begin
@@ -268,7 +268,7 @@ declare
268
268
where param_value is not null;
269
269
exception
270
270
when no_data_found then
271
-
l_path := a_default_value;
271
+
null;
272
272
when too_many_rows then
273
273
raise_application_error(-20000, 'Parameter "-'||a_param_name||'='||a_param_name||'" defined more than once. Only one "-'||a_param_name||'='||a_param_name||'" parameter can be used.');
0 commit comments