Skip to content

Commit

Permalink
Merge pull request #21 from Synthetixio/stats-bug
Browse files Browse the repository at this point in the history
bug: duplicated records
  • Loading branch information
Tburm authored Jan 23, 2024
2 parents 991dc5b + e2ccc86 commit c73db84
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ inc AS (
inc_trades h
LEFT JOIN inc_liq l
ON h.ts = l.ts
AND h.account_id = l.account_id
)
SELECT
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ inc AS (
inc_trades h
LEFT JOIN inc_liq l
ON h.ts = l.ts
AND h.market_symbol = l.market_symbol
)
SELECT
*
Expand Down

0 comments on commit c73db84

Please sign in to comment.