Skip to content

Commit

Permalink
Fix a removal
Browse files Browse the repository at this point in the history
  • Loading branch information
ilias1111 committed Nov 27, 2024
1 parent f99b09f commit 2df1887
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ events_this_run as (
,max(case when ev.event_type = 'adskip' then 1 else 0 end) > 0 as skipped
,max(case when ev.event_type = 'adcomplete' or (ev.event_type = 'adquartile' and ev.ad_quartile_event__percent_progress >= 25) then 1 else 0 end) > 0 as percent_reached_25
,max(case when ev.event_type = 'adcomplete' or (ev.event_type = 'adquartile' and ev.ad_quartile_event__percent_progress >= 50) then 1 else 0 end) > 0 as percent_reached_50
,max(case when ev.event_type = 'adcomplete' or (ev.event_type = 'adquartile' and ev.ad_quartile_event__percent_progress >= 75) then 1 else 0 end) > 0 as percent_reached_75
,max(case when ev.event_type = 'adcomplete' then 1 else 0 end) > 0 as percent_reached_100

,min(ev.start_tstamp) as viewed_at
Expand Down

0 comments on commit 2df1887

Please sign in to comment.