Skip to content

Commit

Permalink
Fix parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
NiallRees committed Jun 21, 2023
1 parent 576c626 commit b8d3a6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models/daily_rates.sql
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ dates_base as (
select date_day as date from (
{{ dbt_utils.date_spine(
datepart="day",
start_date='2018-01-01',
end_date="dateadd('day', 1, current_date))"
start_date="'2018-01-01'",
end_date="dateadd(day, 1, current_date)"
)
}}
)
Expand Down

0 comments on commit b8d3a6d

Please sign in to comment.