rollback experimental fix (#7948)

This commit is contained in:
Andrey Vasnetsov
2026-02-09 23:15:37 +01:00
committed by generall
parent 314f21003c
commit 7b9f094b13
@@ -213,7 +213,7 @@ impl<T: PrimitiveVectorElement> MmapDenseVectors<T> {
mut callback: impl FnMut(usize, PointOffsetType, &[T]),
) {
for (idx, point) in points.enumerate() {
let vector = self.get_vector::<Sequential>(point);
let vector = self.get_vector::<Random>(point);
callback(idx, point, vector);
}
}