Skip to content

Commit

Permalink
chore(chstorage): implement WriteColumn for attributeCol
Browse files Browse the repository at this point in the history
  • Loading branch information
tdakkota committed Oct 22, 2024
1 parent dd8b363 commit efd94d7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions internal/chstorage/attributes.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit efd94d7

Please sign in to comment.