-
Notifications
You must be signed in to change notification settings - Fork 60
Open
Labels
Description
Consider this code:
result_set = UserTraffic.connection.select_all("select utmcsr as source,
utmcmd as medium,
utmctr as keyword,
utmcct as ad_content,
sum(label='register') as registrations,
sum(label='create-demo-account') as demo_accounts,
sum(label='create-contest-account') as contest_accounts,
sum(label='create-real-account') as real_accounts
from #{UserTraffic.table_name}
where utmccn = #{partner.id} and label is not null#{date_conditions}
group by utmcsr, utmcmd, utmctr, utmcct")
Last 3 lines here showed by RCov like lines of code and the last line is showed as uncovered