From a87c758a80facbfbcde4768ad42cdf4c5c2cc5a8 Mon Sep 17 00:00:00 2001 From: Ritchie Vink Date: Thu, 3 Mar 2022 05:12:24 +0100 Subject: [PATCH] remove superfluous assert (#872) --- src/array/growable/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/array/growable/mod.rs b/src/array/growable/mod.rs index c6d45356237..03f5d2345d5 100644 --- a/src/array/growable/mod.rs +++ b/src/array/growable/mod.rs @@ -73,7 +73,6 @@ pub fn make_growable<'a>( ) -> Box + 'a> { assert!(!arrays.is_empty()); let data_type = arrays[0].data_type(); - assert!(arrays.iter().all(|&item| item.data_type() == data_type)); use PhysicalType::*; match data_type.to_physical_type() {