Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel committed Feb 3, 2025
1 parent 6a7bda9 commit a07b5bc
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/common/src/util/value_encoding/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,6 @@ fn deserialize_list(item_type: &DataType, data: &mut impl Buf) -> Result<ScalarI

fn deserialize_str(data: &mut impl Buf) -> Result<Box<str>> {
let len = data.get_u32_le();
tracing::trace!("len: {len}");
let mut bytes = vec![0; len as usize];
data.copy_to_slice(&mut bytes);
String::from_utf8(bytes)
Expand Down

0 comments on commit a07b5bc

Please sign in to comment.