()
| 279 | } |
| 280 | |
| 281 | func (t *Tablet) getColumnCategories() []int8 { |
| 282 | columnCategories := make([]int8, len(t.columnCategories)) |
| 283 | for i := range t.columnCategories { |
| 284 | columnCategories[i] = int8(t.columnCategories[i]) |
| 285 | } |
| 286 | return columnCategories |
| 287 | } |
| 288 | |
| 289 | func (t *Tablet) getValuesBytes() ([]byte, error) { |
| 290 | buff := &bytes.Buffer{} |
no outgoing calls
no test coverage detected