[skip ci]Fix golint error in minio_kv (#10701)

Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com>
This commit is contained in:
zhenshan.cao 2021-10-26 22:40:34 +08:00 committed by GitHub
parent 4ca4c81ce3
commit dcac9c71b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -249,6 +249,7 @@ func (kv *MinIOKV) MultiRemove(keys []string) error {
return resultErr
}
// LoadPartial loads partial data ranged in [start, end) with @key.
func (kv *MinIOKV) LoadPartial(key string, start, end int64) ([]byte, error) {
switch {
case start < 0 || end < 0: