Skip to content

Commit

Permalink
Merge branch 'current' into DOCS-2-somename
Browse files Browse the repository at this point in the history
  • Loading branch information
mirnawong1 authored Nov 5, 2024
2 parents 803acba + 0d14bd1 commit 12a555d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions website/docs/docs/build/metricflow-time-spine.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ final as (
select * from final
where date_day > dateadd(year, -4, current_timestamp())
and date_hour < dateadd(day, 30, current_timestamp())
and date_day < dateadd(day, 30, current_timestamp())
```

### Daily (BigQuery)
Expand Down Expand Up @@ -180,7 +180,7 @@ select *
from final
-- filter the time spine to a specific range
where date_day > dateadd(year, -4, current_timestamp())
and date_hour < dateadd(day, 30, current_timestamp())
and date_day < dateadd(day, 30, current_timestamp())
```

</File>
Expand Down Expand Up @@ -265,7 +265,7 @@ final as (
select * from final
where date_day > dateadd(year, -4, current_timestamp())
and date_hour < dateadd(day, 30, current_timestamp())
and date_day < dateadd(day, 30, current_timestamp())
```

</File>
Expand Down Expand Up @@ -296,7 +296,7 @@ select *
from final
-- filter the time spine to a specific range
where date_day > dateadd(year, -4, current_timestamp())
and date_hour < dateadd(day, 30, current_timestamp())
and date_day < dateadd(day, 30, current_timestamp())
```

</File>
Expand Down

0 comments on commit 12a555d

Please sign in to comment.