fix: Remove unnecessary allocation
parent
0b3c412cfc
commit
bbbbf8ee07
|
@ -615,7 +615,7 @@ impl SeriesStore for MemDB {
|
|||
bucket_id: u32,
|
||||
points: &[PointType],
|
||||
) -> Result<(), StorageError> {
|
||||
self.write_points_with_series_ids(bucket_id, &points.to_vec())
|
||||
self.write_points_with_series_ids(bucket_id, points)
|
||||
}
|
||||
|
||||
fn read_i64_range(
|
||||
|
|
Loading…
Reference in New Issue