diff --git a/src/array/fixed_size_list/mutable.rs b/src/array/fixed_size_list/mutable.rs index 66655faf04a..d2621807832 100644 --- a/src/array/fixed_size_list/mutable.rs +++ b/src/array/fixed_size_list/mutable.rs @@ -3,7 +3,7 @@ use std::sync::Arc; use crate::{ array::{Array, MutableArray, TryExtend, TryPush}, bitmap::MutableBitmap, - datatypes::{DataType,Field}, + datatypes::{DataType, Field}, error::{ArrowError, Result}, }; @@ -45,7 +45,7 @@ impl MutableFixedSizeListArray { pub fn new_with_field(values: M, name: &str, nullable: bool, size: usize) -> Self { let data_type = DataType::FixedSizeList( Box::new(Field::new(name, values.data_type().clone(), nullable)), - size + size, ); assert_eq!(values.len(), 0); Self {