(ctx context.Context, fromMeta, toMeta *backend.BlockMeta, from backend.Reader, to backend.Writer)
| 38 | } |
| 39 | |
| 40 | func (v Encoding) MigrateBlock(ctx context.Context, fromMeta, toMeta *backend.BlockMeta, from backend.Reader, to backend.Writer) error { |
| 41 | return CopyBlock(ctx, fromMeta, toMeta, from, to) |
| 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) |
nothing calls this directly
no test coverage detected