(ctx context.Context, cfg *common.BlockConfig, meta *backend.BlockMeta, i common.Iterator, r backend.Reader, to backend.Writer)
| 42 | } |
| 43 | |
| 44 | func (v Encoding) CreateBlock(ctx context.Context, cfg *common.BlockConfig, meta *backend.BlockMeta, i common.Iterator, r backend.Reader, to backend.Writer) (*backend.BlockMeta, error) { |
| 45 | return CreateBlock(ctx, cfg, meta, i, r, to) |
| 46 | } |
| 47 | |
| 48 | // OpenWALBlock opens an existing appendable block |
| 49 | func (v Encoding) OpenWALBlock(filename, path string, ingestionSlack, additionalStartSlack time.Duration) (common.WALBlock, error, error) { |
nothing calls this directly
no test coverage detected