fix rocksdb

This commit is contained in:
Chris Lu 2021-01-15 18:31:29 -08:00
parent 16ad74f477
commit 01dc8a43ba

View file

@ -175,7 +175,7 @@ func (store *RocksDBStore) DeleteFolderChildren(ctx context.Context, fullpath we
return nil
}
func enumerate(iter *gorocksdb.Iterator, prefix, lastKey []byte, includeLastKey bool, limit int, fn func(key, value []byte) bool) (hasMore bool, err error) {
func enumerate(iter *gorocksdb.Iterator, prefix, lastKey []byte, includeLastKey bool, limit int64, fn func(key, value []byte) bool) (hasMore bool, err error) {
if len(lastKey) == 0 {
iter.Seek(prefix)
@ -190,7 +190,7 @@ func enumerate(iter *gorocksdb.Iterator, prefix, lastKey []byte, includeLastKey
}
}
i := 0
i := int64(0)
for ; iter.Valid(); iter.Next() {
if limit > 0 {