Skip to content

Commit

Permalink
Merge pull request #133 from saraburns1/fixdbt
Browse files Browse the repository at this point in the history
fix: fix bad concat
  • Loading branch information
saraburns1 authored Nov 14, 2024
2 parents b88bde7 + 0271c6e commit 23bee73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models/video/watched_video_duration.sql
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ with
group by org, course_key
)
select
concat(course_data.org, range.org) as org,
concat(course_data.course_key, range.course_key) as course_key,
coalesce(course_data.org, range.org) as org,
coalesce(course_data.course_key, range.course_key) as course_key,
range.actor_id as actor_id,
video_duration,
cast(video_count as Int32) as video_count,
Expand Down

0 comments on commit 23bee73

Please sign in to comment.