Skip to content

Commit

Permalink
chore: removal accidental inclusion of dbg macro (#2879)
Browse files Browse the repository at this point in the history
  • Loading branch information
westonpace committed Sep 13, 2024
1 parent 60797a6 commit 5319a11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/lance-encoding/src/encodings/physical/value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 5319a11

Please sign in to comment.