Skip to content

Commit

Permalink
Fixes typo in column name
Browse files Browse the repository at this point in the history
  • Loading branch information
Lawiss committed Dec 19, 2024
1 parent 7a98334 commit a000667
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dbt/models/fraud/users_intraday_role_change_stats.sql
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ select
avg(
count_consecutive_changes
) as avg_daily_consecutives_intraday_role_changes,
max(count_consecutive_changes) as max_daily_consecutives_intraday_role_change
max(count_consecutive_changes) as max_daily_consecutives_intraday_role_changes
from intraday_stats
group by 1
2 changes: 1 addition & 1 deletion dbt/models/fraud/users_statistics.sql
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@ select
s.*,
uircs.total_consecutives_intraday_role_changes,
uircs.avg_daily_consecutives_intraday_role_changes,
uircs.max_daily_consecutives_intraday_role_change
uircs.max_daily_consecutives_intraday_role_changes
from stats s
left join {{ ref('users_intraday_role_change_stats') }} uircs on s.user_identity_key=uircs.user_identity_key

0 comments on commit a000667

Please sign in to comment.