From fb4ac3ab0f638e8ccc8e3631b06366dc4fc39d45 Mon Sep 17 00:00:00 2001 From: Kikkon <19528375+Kikkon@users.noreply.github.com> Date: Sun, 29 Sep 2024 21:01:31 +0800 Subject: [PATCH] Update arrow-array/src/array/list_view_array.rs Co-authored-by: Matthijs Brobbel --- arrow-array/src/array/list_view_array.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arrow-array/src/array/list_view_array.rs b/arrow-array/src/array/list_view_array.rs index cdd149eea2e2..64306e91827c 100644 --- a/arrow-array/src/array/list_view_array.rs +++ b/arrow-array/src/array/list_view_array.rs @@ -92,8 +92,8 @@ impl GenericListViewArray { } 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() ))); }