Skip to content

Commit

Permalink
Merge pull request #530 from go-faster/dependabot/go_modules/github.c…
Browse files Browse the repository at this point in the history
…om/ClickHouse/ch-go-0.63.0

chore(deps): bump github.com/ClickHouse/ch-go from 0.62.0 to 0.63.0
  • Loading branch information
tdakkota authored Oct 22, 2024
2 parents 53a76e3 + 68c4ef1 commit 062134b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.23.0

require (
entgo.io/ent v0.14.1
github.com/ClickHouse/ch-go v0.62.0
github.com/ClickHouse/ch-go v0.63.1
github.com/MakeNowJust/heredoc/v2 v2.0.1
github.com/Masterminds/sprig/v3 v3.3.0
github.com/VictoriaMetrics/easyproto v0.1.4
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2/go.mod h1:wP83
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
github.com/BurntSushi/toml v1.2.1 h1:9F2/+DoOYIOksmaJFPw1tGFy1eDnIJXg+UHjuD8lTak=
github.com/BurntSushi/toml v1.2.1/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ=
github.com/ClickHouse/ch-go v0.62.0 h1:eXH0hytXeCEEZHgMvOX9IiW7wqBb4w1MJMp9rArbkrc=
github.com/ClickHouse/ch-go v0.62.0/go.mod h1:uzso52/PD9+gZj7tL6XAo8/EYDrx7CIwNF4c6PnO6S0=
github.com/ClickHouse/ch-go v0.63.1 h1:s2JyZvWLTCSAGdtjMBBmAgQQHMco6pawLJMOXi0FODM=
github.com/ClickHouse/ch-go v0.63.1/go.mod h1:I1kJJCL3WJcBMGe1m+HVK0+nREaG+JOYYBWjrDrF3R0=
github.com/DATA-DOG/go-sqlmock v1.5.0 h1:Shsta01QNfFxHCfpW6YH2STWB0MudeXXEWMr20OEh60=
github.com/DATA-DOG/go-sqlmock v1.5.0/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM=
github.com/MakeNowJust/heredoc/v2 v2.0.1 h1:rlCHh70XXXv7toz95ajQWOWQnN4WNLt0TdpZYIR/J6A=
Expand Down
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
2 changes: 1 addition & 1 deletion internal/chstorage/inserter_metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ type labelScope uint8

const (
labelScopeNone labelScope = 0
labelScopeResource labelScope = 1 << iota
labelScopeResource labelScope = 1 << (iota - 1)
labelScopeInstrumentation
labelScopeAttribute
)
Expand Down

0 comments on commit 062134b

Please sign in to comment.