Skip to content

Commit

Permalink
Merge branch 'current' into one-nine
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewshaver authored Nov 26, 2024
2 parents d687274 + cb12b63 commit b154994
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/docs/docs/build/metricflow-time-spine.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ final as (
select *
from final
-- filter the time spine to a specific range
where date_day > dateadd(year, -4, current_timestamp())
and date_day < dateadd(day, 30, current_timestamp())
where date_day > date_add(DATE(current_timestamp()), INTERVAL -4 YEAR)
and date_day < date_add(DATE(current_timestamp()), INTERVAL 30 DAY)
```

</File>
Expand Down

0 comments on commit b154994

Please sign in to comment.