(maxBytes int)
| 59 | } |
| 60 | |
| 61 | func DefaultSearchOptionsWithMaxBytes(maxBytes int) SearchOptions { |
| 62 | opts := DefaultSearchOptions() |
| 63 | opts.MaxBytes = maxBytes |
| 64 | return opts |
| 65 | } |
| 66 | |
| 67 | type Compactor interface { |
| 68 | Compact(ctx context.Context, l log.Logger, r backend.Reader, w backend.Writer, inputs []*backend.BlockMeta) ([]*backend.BlockMeta, error) |
no test coverage detected