You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WITH
-- dates_of_interest defines all points in time that are relevant to the query.-- It includes the start_time, all status changes, all deletions, and the end_time.
dates_of_interest AS (
SELECTdateFROM generate_series(
@start_time::timestamptz,
@end_time::timestamptz,
(CASE WHEN @interval::int<=0 THEN 3600*24 ELSE @interval::int END ||' seconds')::interval
) ASdate
),
mtojek
added a commit
to coder/coder
that referenced
this issue
Mar 10, 2025
Looks like this test has broken with the US moving to daylight savings, it only runs with postgres and it's failed on all postgres-using CI jobs.
https://github.com/coder/coder/actions/runs/13752449408
https://github.com/coder/coder/actions/runs/13756567387
e.g.
The text was updated successfully, but these errors were encountered: