Skip to content

Commit

Permalink
missing comma and wrong ref (#23) (#25)
Browse files Browse the repository at this point in the history
Co-authored-by: kgpayne <[email protected]>

Co-authored-by: Konrad <[email protected]>
  • Loading branch information
kgpayne and kon-mal authored Apr 16, 2021
1 parent 26e5b94 commit f0272bb
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions models/fct_dbt__exposures_updates.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ exposures_record as (

select * from {{ ref('dim_dbt__exposures') }}

)
),


model_updates as (

Expand Down Expand Up @@ -48,9 +49,9 @@ exposures_updates as (
e.package_name,
e.output_feeds,
latest_update as feed_latest_update
from exposures e
from exposures_latest e
left join model_updates m
on m.node_id = e.output_feeds
on m.node_id = e.output_feeds

)

Expand Down

0 comments on commit f0272bb

Please sign in to comment.