-
Notifications
You must be signed in to change notification settings - Fork 27
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Small formatting fix. Wondering if it's time to set up integration tests on this package (if we're going to continue to support it)
@@ -14,7 +14,7 @@ with base as ( | |||
coalesce(page_link,template_page_link) as url, | |||
coalesce(page_link,template_page_link) as base_url, | |||
'/' || {{ dbt_utils.get_url_path('coalesce(page_link,template_page_link)') }} as url_path, | |||
row_number() over (partition by creative_id, page_link order by _FIVETRAN_SYNCED desc) as row_num | |||
row_number() over (partition by creative_id, page_link order by _fivetran_synced desc) as row_num |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if this will break Snowflake. I don't think it will 🤞
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Honestly, I just went ahead and switched it back.
Yeah, I'll defer to you @clrcrl on whether or not we will continue supporting them. If so, we should probably go all in soon. Setup integration tests, move logic out of macros, etc. |
Description:
first_value
window functions in Redshift require an explicit frame clause.