Skip to content

Commit

Permalink
Merge pull request #15 from b-per/modif-get_base_dates
Browse files Browse the repository at this point in the history
Change from date() to cast( as date)
  • Loading branch information
clausherther authored Mar 26, 2021
2 parents 5c16c92 + 76ccc19 commit cb1a934
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion macros/get_base_dates.sql
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ with date_spine as

)
select
date(d.date_day) as date_day
cast(d.date_day as date) as date_day
from
date_spine d
{% endmacro %}

0 comments on commit cb1a934

Please sign in to comment.