Skip to content
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.

Fix/redshift comp #36

Merged
merged 4 commits into from
Jul 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion dbt_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ clean-targets: ["target"] # directories removed by the clean task
test-paths: ["test"] # where to store test results
data-paths: ["data"] # load CSVs from this directory with `dbt seed`


vars:

etl: #stitch or fivetran
Expand Down
3 changes: 2 additions & 1 deletion macros/fivetran/base/fivetran_fb_url_tag.sql
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ final as (

over (
partition by creative_id
order by key
order by key
rows between unbounded preceding and unbounded following
) as {{value}}

{% if not loop.last %}
Expand Down