Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
samnlindsay authored Aug 9, 2024
1 parent 48ca526 commit ebf247b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion splink/missingness.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def completeness_data(linker, input_tablename=None, cols=None):
count(*) as total_rows_inc_nulls,
cast(count({col})*1.0/count(*) as float) as completeness
from {input_tablename}
group by source_dataset
group by {source_name}
order by count(*) desc)
"""
sqls.append(sql)
Expand Down

0 comments on commit ebf247b

Please sign in to comment.