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 08266ac commit 2f1e965
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration_tests/models/sp500_agg.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ formatted as (
)
SELECT
adapter.quote("month"),
MAX(high) as adapter.quote("high"),
MIN(low) as adapter.quote("low")
MAX(high) as {{ adapter.quote("high") }},
MIN(low) as {{ adapter.quote("low") }}
FROM formatted
GROUP BY month

0 comments on commit 2f1e965

Please sign in to comment.