Skip to content

Commit

Permalink
Store: fix forgotten field in store stats merge
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaHoffmann committed Aug 30, 2023
1 parent ea67282 commit d038cce
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/store/bucket.go
Original file line number Diff line number Diff line change
Expand Up @@ -3525,6 +3525,7 @@ type queryStats struct {
func (s queryStats) merge(o *queryStats) *queryStats {
s.blocksQueried += o.blocksQueried

s.postingsToFetch += o.postingsToFetch
s.postingsTouched += o.postingsTouched
s.PostingsTouchedSizeSum += o.PostingsTouchedSizeSum
s.postingsFetched += o.postingsFetched
Expand Down

0 comments on commit d038cce

Please sign in to comment.