Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
remove superfluous assert (#872)
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 authored Mar 3, 2022
1 parent b9eae79 commit a87c758
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/array/growable/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ pub fn make_growable<'a>(
) -> Box<dyn Growable<'a> + '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() {
Expand Down

0 comments on commit a87c758

Please sign in to comment.