From dc70af4d9672c02760970e8c6e93cae699caea98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gy=C3=B6rgy=20Krajcsovits?= Date: Fri, 2 Aug 2024 10:53:49 +0200 Subject: [PATCH] Fix TestOOOHeadChunkReader_LabelValues MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Enable OOO native histograms Signed-off-by: György Krajcsovits --- tsdb/ooo_head_read_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/tsdb/ooo_head_read_test.go b/tsdb/ooo_head_read_test.go index a3b689fb7f..ec73a59f8b 100644 --- a/tsdb/ooo_head_read_test.go +++ b/tsdb/ooo_head_read_test.go @@ -370,6 +370,7 @@ func TestOOOHeadChunkReader_LabelValues(t *testing.T) { func testOOOHeadChunkReader_LabelValues(t *testing.T, scenario sampleTypeScenario) { chunkRange := int64(2000) head, _ := newTestHead(t, chunkRange, wlog.CompressionNone, true) + head.opts.EnableOOONativeHistograms.Store(true) t.Cleanup(func() { require.NoError(t, head.Close()) }) ctx := context.Background()