Merge branch 'public-single-node' into victorialogs-wip

This commit is contained in:
Aliaksandr Valialkin 2024-05-12 16:37:04 +02:00
commit 8c394eb841
No known key found for this signature in database
GPG key ID: 52C003EE2BCDB9EB

View file

@ -71,8 +71,7 @@ func unmarshalInt64NearestDelta2(dst []int64, src []byte, firstValue int64, item
}
dstLen := len(dst)
dst = slicesutil.ExtendCapacity(dst, itemsCount)
dst = dst[:dstLen+itemsCount]
dst = slicesutil.SetLength(dst, dstLen+itemsCount)
as := dst[dstLen:]
v := firstValue