(tenantID string, blockID backend.UUID)
| 613 | } |
| 614 | |
| 615 | func (rw *readerWriter) MarkBlockCompacted(tenantID string, blockID backend.UUID) error { |
| 616 | return rw.c.MarkBlockCompacted((uuid.UUID)(blockID), tenantID) |
| 617 | } |
| 618 | |
| 619 | // RedactBlock rewrites a block excluding the given trace IDs. If none of the trace IDs |
| 620 | // are in the block, no rewrite is performed. |
nothing calls this directly
no test coverage detected