diff --git a/rust/lance-encoding/src/encodings/physical/value.rs b/rust/lance-encoding/src/encodings/physical/value.rs index 32ba61bf88..8767008c01 100644 --- a/rust/lance-encoding/src/encodings/physical/value.rs +++ b/rust/lance-encoding/src/encodings/physical/value.rs @@ -174,7 +174,7 @@ impl ValuePageDecoder { (None, 0) => { // The entire request is contained in one buffer so we can maybe zero-copy // if the slice is aligned properly - return LanceBuffer::from_bytes(slice, dbg!(self.bytes_per_value)); + return LanceBuffer::from_bytes(slice, self.bytes_per_value); } (None, _) => { dest.replace(Vec::with_capacity(bytes_to_take as usize));