From 5319a1137770951f254e7b07ac6da3d6cf94f2eb Mon Sep 17 00:00:00 2001 From: Weston Pace Date: Fri, 13 Sep 2024 10:49:30 -0700 Subject: [PATCH] chore: removal accidental inclusion of dbg macro (#2879) --- rust/lance-encoding/src/encodings/physical/value.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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));