File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 2323else :
2424 # Summary
2525 st .subheader ("🥉 Key diff:" )
26+ st .caption ("Compare the Primary Key (`pk`) only" )
2627 sql = f"""
2728 with
2829
5758 st .dataframe (data , use_container_width = True )
5859
5960 st .subheader ("🥈 Schema diff:" )
61+ st .caption ("Compare the data structure (column's Names and Data Types)" )
6062 sql = f"""
6163 with
6264
9294 st .dataframe (data , use_container_width = True )
9395
9496 st .subheader ("🥇 Data diff:" )
97+ st .caption ("Compare all cell values given matched columns and mached keys" )
9598 sql = f"""
9699 with
97100
103106
104107 select case when r.src_db is null then '🟢' else '🔴' end as result
105108 ,r.column_name
106- ,concat(100 - r.match_percentage * 100, ' %') as match_percentage
109+ ,concat(r.match_percentage * 100, ' %') as match_percentage
107110 ,concat(r.diff_feeded_rate * 100, ' %') as diff_feeded_rate
108111 ,concat(r.diff_count, '/', r.table_count) as diff_count_vs_total
109112 ,concat(
You can’t perform that action at this time.
0 commit comments