From 7a33f5c2cae55bfd8f9d2994706888a5a4b68761 Mon Sep 17 00:00:00 2001 From: Ganesh Vernekar Date: Wed, 22 Mar 2023 13:19:49 +0530 Subject: [PATCH] Change UnsupportedMask to not clash with OutOfOrderMask Signed-off-by: Ganesh Vernekar --- tsdb/chunks/head_chunks_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsdb/chunks/head_chunks_test.go b/tsdb/chunks/head_chunks_test.go index 8ada3ecb5a..a80a1daab9 100644 --- a/tsdb/chunks/head_chunks_test.go +++ b/tsdb/chunks/head_chunks_test.go @@ -595,7 +595,7 @@ func writeUnsupportedChunk(t *testing.T, idx int, hrw *ChunkDiskMapper) (seriesR } const ( - UnsupportedMask = 0b11000000 + UnsupportedMask = 0b01000000 EncUnsupportedXOR = chunkenc.EncXOR | UnsupportedMask )