Skip to content

Commit

Permalink
fix: missing jinja on join table (#20)
Browse files Browse the repository at this point in the history
**Motivation:**

Added missing jinja in dbt for investment table to keep lineage
consistent
  • Loading branch information
scottincrypto committed Sep 1, 2023
1 parent 039244a commit 33dd3a1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ from balances b
b.reserve = p.reserve
)
left join eth_prices e on (b.block_day = e.block_day)
left join warehouse.balance_group_lookup l on (
-- left join warehouse.balance_group_lookup l on (
left join {{ source('warehouse','balance_group_lookup') }} l on (
b.market = l.market and
b.symbol = l.atoken_symbol
)
Expand Down

0 comments on commit 33dd3a1

Please sign in to comment.