Skip to content

Commit

Permalink
Merge pull request #10 from shoppad/pre-xmas-fix
Browse files Browse the repository at this point in the history
Pre xmas fix
  • Loading branch information
JonCrawford authored Dec 23, 2023
2 parents f33487d + 8075813 commit 0f4e547
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ with
left join session_counts using (shop_subdomain)
)

select *
select * EXCLUDE (parsed_url)
from final
1 change: 1 addition & 0 deletions models/mesa_segment/staging/stg_segment_first_visits.sql
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ with
split_part(first_page_url, '//', 2) as first_touch_url,
first_page_url_host as first_touch_host,
first_page_url_path as first_touch_path,
first_page_url_query AS first_touch_query,
utm_content as first_touch_content,
utm_campaign as first_touch_campaign,
coalesce(utm_medium, referrer_medium) as first_touch_medium,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ with
split_part(first_page_url, '//', 2) as last_touch_url,
first_page_url_host as last_touch_host,
first_page_url_path as last_touch_path,
first_page_url_query AS last_touch_query,
utm_content as last_touch_content,
utm_campaign as last_touch_campaign,
coalesce(utm_medium, referrer_medium) as last_touch_medium,
Expand Down

0 comments on commit 0f4e547

Please sign in to comment.