Skip to content

Commit

Permalink
Fix liquidity query
Browse files Browse the repository at this point in the history
  • Loading branch information
MicroFish91 committed Nov 14, 2024
1 parent a230e64 commit 4030161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/services/snapshot/store_groupbyliquidity.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func (s *PostgresSnapshotStore) GroupByLiquidity(ctx context.Context, userId, sn
a.institution,
a.tax_shelter,
sv.total,
SUM(sv.total) AS liquid_total
SUM(sv.total) OVER() AS liquid_total
from
snapshots_values sv
inner join
Expand Down

0 comments on commit 4030161

Please sign in to comment.