DeleteNoCompactFlag implements backend.Writer
(ctx context.Context, blockID uuid.UUID, tenantID string)
| 182 | |
| 183 | // DeleteNoCompactFlag implements backend.Writer |
| 184 | func (w *writer) DeleteNoCompactFlag(ctx context.Context, blockID uuid.UUID, tenantID string) error { |
| 185 | return w.w.Delete(ctx, NoCompactFileName, KeyPathForBlock(blockID, tenantID), nil) |
| 186 | } |
| 187 | |
| 188 | type reader struct { |
| 189 | r RawReader |
nothing calls this directly
no test coverage detected