Skip to content

Commit

Permalink
fixing dates
Browse files Browse the repository at this point in the history
  • Loading branch information
alexwes committed Sep 10, 2024
1 parent 29f75e4 commit 6a9c4ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models/projects/layerzero/core/ez_layerzero_metrics.sql
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ SELECT
f.fees,
d.dau,
d.txns
FROM fees f
JOIN dau_txns d using (date)
FROM dau_txns d
LEFT JOIN fees f using (date)
WHERE coalesce(f.date, d.date) < to_date(sysdate())

0 comments on commit 6a9c4ad

Please sign in to comment.