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

Skip to content

Commit d96d602

Browse files
committed
remove schema quantifier
1 parent 9dc266e commit d96d602

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

source/expectations/data_values/ut_compound_data_helper.pkb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ create or replace package body ut_compound_data_helper is
150150

151151
l_sql := q'[with exp as (
152152
select exp_item_data, exp_data_id, item_no rn,rownum col_no,
153-
nvl2(exp_item_data,ut3.ut_compound_data_helper.get_pk_value(i.join_by,exp_item_data),null) pk_value,
153+
nvl2(exp_item_data,ut_compound_data_helper.get_pk_value(i.join_by,exp_item_data),null) pk_value,
154154
s.column_value col, s.column_value.getRootElement() col_name, s.column_value.getclobval() col_val
155155
from (
156156
select exp_data_id, ]'||l_exp_col_filter||q'[, :join_by join_by, item_no
@@ -161,7 +161,7 @@ create or replace package body ut_compound_data_helper is
161161
),
162162
act as (
163163
select act_item_data, act_data_id, item_no rn, rownum col_no,
164-
nvl2(act_item_data,ut3.ut_compound_data_helper.get_pk_value(i.join_by,act_item_data),null) pk_value,
164+
nvl2(act_item_data,ut_compound_data_helper.get_pk_value(i.join_by,act_item_data),null) pk_value,
165165
s.column_value col, s.column_value.getRootElement() col_name, s.column_value.getclobval() col_val
166166
from (
167167
select act_data_id, ]'||l_act_col_filter||q'[, :join_by join_by, item_no
@@ -203,7 +203,7 @@ create or replace package body ut_compound_data_helper is
203203
select
204204
item_no as rn, case when exp_data_id is null then 'Extra:' else 'Missing:' end as diff_type,
205205
xmlserialize(content (extract((case when exp_data_id is null then act_item_data else exp_item_data end),'/*/*')) no indent) diffed_row,
206-
nvl2(:join_by,ut3.ut_compound_data_helper.get_pk_value(:join_by,case when exp_data_id is null then act_item_data else exp_item_data end),null) pk_value
206+
nvl2(:join_by,ut_compound_data_helper.get_pk_value(:join_by,case when exp_data_id is null then act_item_data else exp_item_data end),null) pk_value
207207
,case when exp_data_id is null then 1 else 2 end rnk
208208
,2 final_order
209209
from ut_compound_data_diff_tmp i
@@ -681,7 +681,7 @@ create or replace package body ut_compound_data_helper is
681681
procedure insert_diffs_result(a_diff_tab t_diff_tab, a_diff_id raw) is
682682
begin
683683
forall idx in 1..a_diff_tab.count
684-
insert into ut3.ut_compound_data_diff_tmp
684+
insert into ut_compound_data_diff_tmp
685685
( diff_id, act_item_data, act_data_id, exp_item_data, exp_data_id, item_no, duplicate_no )
686686
values
687687
(a_diff_id,

0 commit comments

Comments
 (0)