Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dbt/models/marts/max_streaks.sql
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ daily_solves as (
-- Convert to JST date (epoch + 9 hours, then truncate to day)
select distinct
user_id,
(to_timestamp(first_ac_epoch) at time zone 'UTC' at time zone 'Asia/Tokyo')::date as solve_date
(to_timestamp(first_ac_epoch) at time zone 'Asia/Tokyo')::date as solve_date
from first_ac_per_problem
),

Expand Down
Loading