Skip to content

Commit

Permalink
Try ETH to check pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
nhd98z committed Aug 25, 2023
1 parent f59c831 commit 064ce50
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ LEFT JOIN {{ source('prices', 'usd') }} p_sold
LEFT JOIN {{ source('prices', 'usd') }} p_avax
ON p_avax.minute = date_trunc('minute', meta_router.block_time)
AND p_avax.blockchain IS NULL
AND p_avax.symbol = 'AVAX'
AND p_avax.symbol = 'ETH'
{% if is_incremental() %}
AND p_avax.minute >= date_trunc('day', now() - INTERVAL '7' DAY)
{% else %}
Expand Down
2 changes: 1 addition & 1 deletion models/kyberswap/bnb/kyberswap_aggregator_bnb_trades.sql
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ LEFT JOIN {{ source('prices', 'usd') }} p_sold
LEFT JOIN {{ source('prices', 'usd') }} p_bnb
ON p_bnb.minute = date_trunc('minute', meta_router.block_time)
AND p_bnb.blockchain IS NULL
AND p_bnb.symbol = 'BNB'
AND p_bnb.symbol = 'ETH'
{% if is_incremental() %}
AND p_bnb.minute >= date_trunc('day', now() - INTERVAL '7' DAY)
{% else %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ LEFT JOIN {{ source('prices', 'usd') }} p_sold
LEFT JOIN {{ source('prices', 'usd') }} p_matic
ON p_matic.minute = date_trunc('minute', meta_router.block_time)
AND p_matic.blockchain IS NULL
AND p_matic.symbol = 'MATIC'
AND p_matic.symbol = 'ETH'
{% if is_incremental() %}
AND p_matic.minute >= date_trunc('day', now() - INTERVAL '7' DAY)
{% else %}
Expand Down

0 comments on commit 064ce50

Please sign in to comment.