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