From 760efe8ee8b806f6d790cd3ec5fb3224ff390bb8 Mon Sep 17 00:00:00 2001 From: bwplotka Date: Tue, 3 Feb 2026 12:11:56 +0000 Subject: [PATCH] [BENCHMARK] RefSample + ST Signed-off-by: bwplotka --- tsdb/record/record.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tsdb/record/record.go b/tsdb/record/record.go index 106b8e51bc..30275c78bb 100644 --- a/tsdb/record/record.go +++ b/tsdb/record/record.go @@ -160,9 +160,9 @@ type RefSeries struct { // RefSample is a timestamp/value pair associated with a reference to a series. // TODO(beorn7): Perhaps make this "polymorphic", including histogram and float-histogram pointers? Then get rid of RefHistogramSample. type RefSample struct { - Ref chunks.HeadSeriesRef - T int64 - V float64 + Ref chunks.HeadSeriesRef + ST, T int64 + V float64 } // RefMetadata is the metadata associated with a series ID.