1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
use crate::array::{growable::make_growable, Array};
use crate::error::{ArrowError, Result};
pub fn concatenate(arrays: &[&dyn Array]) -> Result<Box<dyn Array>> {
if arrays.is_empty() {
return Err(ArrowError::InvalidArgumentError(
"concat requires input of at least one array".to_string(),
));
}
if arrays
.iter()
.any(|array| array.data_type() != arrays[0].data_type())
{
return Err(ArrowError::InvalidArgumentError(
"It is not possible to concatenate arrays of different data types.".to_string(),
));
}
let lengths = arrays.iter().map(|array| array.len()).collect::<Vec<_>>();
let capacity = lengths.iter().sum();
let mut mutable = make_growable(arrays, false, capacity);
for (i, len) in lengths.iter().enumerate() {
mutable.extend(i, 0, *len)
}
Ok(mutable.as_box())
}