Skip to content

Commit 9793c50

Browse files
author
Dat Nguyen
committed
fix: correct diff_feeded_rate
1 parent 2d1e7f6 commit 9793c50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

macros/sis/diff_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
select case when r.src_db is null then '🟢' else '🔴' end as result
105105
,r.column_name
106106
,concat(100 - r.match_percentage * 100, ' %') as match_percentage
107-
,concat(100 - r.diff_feeded_rate * 100, ' %') as diff_feeded_rate
107+
,concat(r.diff_feeded_rate * 100, ' %') as diff_feeded_rate
108108
,concat(r.diff_count, '/', r.table_count) as diff_count_vs_total
109109
,concat(
110110
c.src_db,'.',c.src_schema,'.',c.src_table,

0 commit comments

Comments
 (0)