From a2ba44d7a49b313e8bbda0c2bfc6edd73d89ef7b Mon Sep 17 00:00:00 2001 From: kikkon Date: Sun, 19 May 2024 00:00:30 +0800 Subject: [PATCH] fix lint --- arrow-array/src/array/list_view_array.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/arrow-array/src/array/list_view_array.rs b/arrow-array/src/array/list_view_array.rs index 2e753575798b..4e01ec5d33bb 100644 --- a/arrow-array/src/array/list_view_array.rs +++ b/arrow-array/src/array/list_view_array.rs @@ -744,7 +744,6 @@ mod tests { #[test] #[should_panic(expected = "index out of bounds: the len is 9 but the index is 10")] fn test_list_view_array_index_out_of_bound() { - // 01011001 00000001 let mut null_bits: [u8; 2] = [0; 2]; bit_util::set_bit(&mut null_bits, 0); @@ -811,7 +810,6 @@ mod tests { #[test] fn test_list_view_array_offsets_need_not_start_at_zero() { - let field = Arc::new(Field::new("item", DataType::Int32, true)); let sizes = ScalarBuffer::from(vec![0i32, 0, 3]); let offsets = ScalarBuffer::from(vec![2i32, 2, 5]);