From d038cceee6c1cdd80e5bf85dc5e9f5886b5ab110 Mon Sep 17 00:00:00 2001 From: Michael Hoffmann Date: Wed, 30 Aug 2023 08:57:18 +0200 Subject: [PATCH] Store: fix forgotten field in store stats merge --- pkg/store/bucket.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/store/bucket.go b/pkg/store/bucket.go index a52efab72a8..26869977dbf 100644 --- a/pkg/store/bucket.go +++ b/pkg/store/bucket.go @@ -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