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

Skip to content

Commit 29fe2e1

Browse files
committed
Update stylecheck
1 parent 35d200c commit 29fe2e1

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

source/expectations/data_values/ut_compound_data_helper.pkb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ create or replace package body ut_compound_data_helper is
755755
return l_warn_msg;
756756
end;
757757

758-
function getxmlchildren(p_parent_name varchar2,a_cursor_table ut_cursor_column_tab)
758+
function getxmlchildren(a_parent_name varchar2,a_cursor_table ut_cursor_column_tab)
759759
return xmltype is
760760
l_result xmltype;
761761
begin
@@ -764,8 +764,8 @@ create or replace package body ut_compound_data_helper is
764764
getxmlchildren(t.column_name,a_cursor_table)))
765765
into l_result
766766
from table(a_cursor_table) t
767-
where (p_parent_name is not null and parent_name = p_parent_name)
768-
or (p_parent_name is null and parent_name is null)
767+
where (a_parent_name is not null and parent_name = a_parent_name)
768+
or (a_parent_name is null and parent_name is null)
769769
having count(*) > 0;
770770

771771

source/expectations/data_values/ut_compound_data_helper.pks

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ create or replace package ut_compound_data_helper authid definer is
116116

117117
function generate_missing_cols_warn_msg(a_missing_columns ut_varchar2_list,a_attribute in varchar2) return varchar2;
118118

119-
function getxmlchildren(p_parent_name varchar2,a_cursor_table ut_cursor_column_tab) return xmltype;
119+
function getxmlchildren(a_parent_name varchar2,a_cursor_table ut_cursor_column_tab) return xmltype;
120120

121121
function is_sql_compare_allowed(a_type_name varchar2) return boolean;
122122

0 commit comments

Comments
 (0)