From efd94d725755140df6d45af9e77c67d8f63513d0 Mon Sep 17 00:00:00 2001 From: tdakkota Date: Tue, 22 Oct 2024 11:27:46 +0300 Subject: [PATCH] chore(chstorage): implement `WriteColumn` for `attributeCol` --- internal/chstorage/attributes.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/internal/chstorage/attributes.go b/internal/chstorage/attributes.go index b847bac2..4fe69edd 100644 --- a/internal/chstorage/attributes.go +++ b/internal/chstorage/attributes.go @@ -61,6 +61,10 @@ func (a *attributeCol) EncodeColumn(b *proto.Buffer) { a.col.EncodeColumn(b) } +func (a *attributeCol) WriteColumn(w *proto.Writer) { + a.col.WriteColumn(w) +} + func (a *attributeCol) Append(v otelstorage.Attrs) { a.col.Key = proto.KeyUInt64 h := v.Hash()