()
| 257 | } |
| 258 | |
| 259 | func (t *Tablet) GetTimestampBytes() []byte { |
| 260 | buff := &bytes.Buffer{} |
| 261 | binary.Write(buff, binary.BigEndian, t.timestamps[0:t.RowSize]) |
| 262 | return buff.Bytes() |
| 263 | } |
| 264 | |
| 265 | func (t *Tablet) GetMeasurements() []string { |
| 266 | measurements := make([]string, len(t.measurementSchemas)) |
no test coverage detected