CreateWALBlock creates a new appendable block
(meta *backend.BlockMeta, filepath, dataEncoding string, ingestionSlack time.Duration)
| 52 | |
| 53 | // CreateWALBlock creates a new appendable block |
| 54 | func (v Encoding) CreateWALBlock(meta *backend.BlockMeta, filepath, dataEncoding string, ingestionSlack time.Duration) (common.WALBlock, error) { |
| 55 | return createWALBlock(meta, filepath, dataEncoding, ingestionSlack) |
| 56 | } |
| 57 | |
| 58 | func (v Encoding) OwnsWALBlock(entry fs.DirEntry) bool { |
| 59 | return ownsWALBlock(entry) |
nothing calls this directly
no test coverage detected