|
13 | 13 | _ Column = (*ColLowCardinality[string])(nil)
|
14 | 14 | )
|
15 | 15 |
|
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 |
| - |
44 | 16 | //go:generate go run github.com/dmarkham/enumer -type CardinalityKey -trimprefix Key -output col_low_cardinality_enum.go
|
45 | 17 |
|
46 | 18 | // CardinalityKey is integer type of ColLowCardinality.Keys column.
|
@@ -119,6 +91,34 @@ type ColLowCardinality[T comparable] struct {
|
119 | 91 | keys []int
|
120 | 92 | }
|
121 | 93 |
|
| 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 | + |
122 | 122 | func (c *ColLowCardinality[T]) DecodeColumn(r *Reader, rows int) error {
|
123 | 123 | if rows == 0 {
|
124 | 124 | // Skipping entirely of no rows.
|
|
0 commit comments