Skip to content

Commit

Permalink
fixed model alias issue
Browse files Browse the repository at this point in the history
  • Loading branch information
kgmcquate committed Feb 28, 2024
1 parent 08552f1 commit a5bf0be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration_tests/models/sp500_agg.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
WITH
formatted as (
SELECT
{{ dbt_date.date_part("month", adapter.quote("day")) }} as month,
{{ dbt_date.date_part("month", adapter.quote("day")) }} as {{ adapter.quote("month") }},
{{ adapter.quote("high") }} as high,
{{ adapter.quote("low") }} as low
FROM {{ ref('sp500_daily') }}
Expand Down

0 comments on commit a5bf0be

Please sign in to comment.