OpenWALBlock opens an existing appendable block
(filename, path string, ingestionSlack, additionalStartSlack time.Duration)
| 47 | |
| 48 | // OpenWALBlock opens an existing appendable block |
| 49 | func (v Encoding) OpenWALBlock(filename, path string, ingestionSlack, additionalStartSlack time.Duration) (common.WALBlock, error, error) { |
| 50 | return openWALBlock(filename, path, ingestionSlack, additionalStartSlack) |
| 51 | } |
| 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) { |
nothing calls this directly
no test coverage detected