Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Time spine move from dbt-utils to dbt-core #4263

Merged
merged 9 commits into from
Oct 12, 2023
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 @@ -22,7 +22,7 @@ To create this table, you need to create a model in your dbt project called `met
with days as (

{{
dbt_utils.date_spine(
dbt_core.date_spine(
matthewshaver marked this conversation as resolved.
Show resolved Hide resolved
'day',
"to_date('01/01/2000','mm/dd/yyyy')",
"to_date('01/01/2027','mm/dd/yyyy')"
Expand All @@ -45,7 +45,7 @@ select * from final
-- BigQuery supports DATE() instead of TO_DATE(). Use this model if you're using BigQuery
{{config(materialized='table')}}
with days as (
{{dbt_utils.date_spine(
{{dbt_core.date_spine(
matthewshaver marked this conversation as resolved.
Show resolved Hide resolved
'day',
"DATE(2000,01,01)",
"DATE(2030,01,01)"
Expand Down
Loading