Skip to content

Commit 7c71e87

Browse files
committed
chore: fix linter issues
1 parent 9eecbcb commit 7c71e87

File tree

3 files changed

+32
-31
lines changed

3 files changed

+32
-31
lines changed

.golangci.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ linters-settings:
3434
- unnecessaryBlock
3535
- redundantSprint
3636
- octalLiteral
37+
- ifElseChain
3738

3839
linters:
3940
disable-all: true
4041
enable:
41-
- depguard
4242
- dogsled
4343
- errcheck
4444
- goconst
45-
# - gocritic # go1.18
45+
- gocritic
4646
- gofmt
4747
- goimports
4848
- revive
@@ -67,6 +67,7 @@ linters:
6767
# - maligned (same as prealloc)
6868
# - funlen (gocyclo is enough)
6969
# - gochecknoglobals (we know when it is ok to use globals)
70+
# - depguard (broken)
7071

7172
issues:
7273
exclude-use-default: false

otel_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ type MapPair[V comparable] struct {
1313
Values *proto.ColArr[V]
1414
}
1515

16-
func (m MapPair[V]) Row(i int) ([]string, []V) {
16+
func (m MapPair[V]) Row(i int) (keys []string, values []V) {
1717
return m.Keys.Row(i), m.Values.Row(i)
1818
}
1919

proto/col_low_cardinality.go

+28-28
Original file line numberDiff line numberDiff line change
@@ -13,34 +13,6 @@ var (
1313
_ Column = (*ColLowCardinality[string])(nil)
1414
)
1515

16-
// DecodeState implements StateDecoder, ensuring state for index column.
17-
func (c *ColLowCardinality[T]) DecodeState(r *Reader) error {
18-
keySerialization, err := r.Int64()
19-
if err != nil {
20-
return errors.Wrap(err, "version")
21-
}
22-
if keySerialization != int64(sharedDictionariesWithAdditionalKeys) {
23-
return errors.Errorf("got version %d, expected %d",
24-
keySerialization, sharedDictionariesWithAdditionalKeys,
25-
)
26-
}
27-
if s, ok := c.index.(StateDecoder); ok {
28-
if err := s.DecodeState(r); err != nil {
29-
return errors.Wrap(err, "index state")
30-
}
31-
}
32-
return nil
33-
}
34-
35-
// EncodeState implements StateEncoder, ensuring state for index column.
36-
func (c ColLowCardinality[T]) EncodeState(b *Buffer) {
37-
// Writing key serialization version.
38-
b.PutInt64(int64(sharedDictionariesWithAdditionalKeys))
39-
if s, ok := c.index.(StateEncoder); ok {
40-
s.EncodeState(b)
41-
}
42-
}
43-
4416
//go:generate go run github.com/dmarkham/enumer -type CardinalityKey -trimprefix Key -output col_low_cardinality_enum.go
4517

4618
// CardinalityKey is integer type of ColLowCardinality.Keys column.
@@ -119,6 +91,34 @@ type ColLowCardinality[T comparable] struct {
11991
keys []int
12092
}
12193

94+
// DecodeState implements StateDecoder, ensuring state for index column.
95+
func (c *ColLowCardinality[T]) DecodeState(r *Reader) error {
96+
keySerialization, err := r.Int64()
97+
if err != nil {
98+
return errors.Wrap(err, "version")
99+
}
100+
if keySerialization != int64(sharedDictionariesWithAdditionalKeys) {
101+
return errors.Errorf("got version %d, expected %d",
102+
keySerialization, sharedDictionariesWithAdditionalKeys,
103+
)
104+
}
105+
if s, ok := c.index.(StateDecoder); ok {
106+
if err := s.DecodeState(r); err != nil {
107+
return errors.Wrap(err, "index state")
108+
}
109+
}
110+
return nil
111+
}
112+
113+
// EncodeState implements StateEncoder, ensuring state for index column.
114+
func (c ColLowCardinality[T]) EncodeState(b *Buffer) {
115+
// Writing key serialization version.
116+
b.PutInt64(int64(sharedDictionariesWithAdditionalKeys))
117+
if s, ok := c.index.(StateEncoder); ok {
118+
s.EncodeState(b)
119+
}
120+
}
121+
122122
func (c *ColLowCardinality[T]) DecodeColumn(r *Reader, rows int) error {
123123
if rows == 0 {
124124
// Skipping entirely of no rows.

0 commit comments

Comments
 (0)