(p []byte, off int64)
| 35 | } |
| 36 | |
| 37 | func (b *BackendReaderAt) ReadAt(p []byte, off int64) (int, error) { |
| 38 | return b.ReadAtWithCache(p, off, cache.RoleNone) |
| 39 | } |
| 40 | |
| 41 | func (b *BackendReaderAt) ReadAtWithCache(p []byte, off int64, role cache.Role) (int, error) { |
| 42 | err := b.r.ReadRange(b.ctx, b.name, (uuid.UUID)(b.meta.BlockID), b.meta.TenantID, uint64(off), p, &backend.CacheInfo{ |
nothing calls this directly
no test coverage detected