Skip to content

Commit

Permalink
Update arrow-array/src/array/list_view_array.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Matthijs Brobbel <m1brobbel@gmail.com>
  • Loading branch information
Kikkon and mbrobbel authored Sep 29, 2024
1 parent adb2b67 commit 69158be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arrow-array/src/array/list_view_array.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ impl<OffsetSize: OffsetSizeTrait> GenericListViewArray<OffsetSize> {
}
if len != sizes.len() {
return Err(ArrowError::InvalidArgumentError(format!(
"Length of offsets buffer and sizes buffer must be equal for {}ListViewArray, got {} and {}",
OffsetSize::PREFIX, len, sizes.len()
"Length of offsets buffer and sizes buffer must be equal for {}ListViewArray, got {len} and {}",
OffsetSize::PREFIX, sizes.len()
)));
}

Expand Down

0 comments on commit 69158be

Please sign in to comment.