(store storage.Store)
| 1052 | func (m *mockOverrides) DedicatedColumns(_ string) backend.DedicatedColumns { return m.dc } |
| 1053 | |
| 1054 | func countFlushedTraces(store storage.Store) int { |
| 1055 | count := 0 |
| 1056 | for _, meta := range store.BlockMetas(util.FakeTenantID) { |
| 1057 | count += int(meta.TotalObjects) |
| 1058 | } |
| 1059 | return count |
| 1060 | } |
| 1061 | |
| 1062 | func generateTraceID(t testing.TB) []byte { |
| 1063 | traceID := make([]byte, 16) |
no test coverage detected