-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARROW-9902: [Rust] [DataFusion] Add array() built-in function
This adds `array()` built-in function to most primitive types. For composite types, this is more challenging and I decided to scope out of this PR. Closes #8102 from jorgecarleitao/array Authored-by: Jorge C. Leitao <[email protected]> Signed-off-by: Andy Grove <[email protected]>
- Loading branch information
1 parent
13ab29d
commit 98b710a
Showing
7 changed files
with
303 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
//! Array expressions | ||
use crate::error::{ExecutionError, Result}; | ||
use arrow::array::*; | ||
use arrow::datatypes::DataType; | ||
use std::sync::Arc; | ||
|
||
macro_rules! downcast_vec { | ||
($ARGS:expr, $ARRAY_TYPE:ident) => {{ | ||
$ARGS | ||
.iter() | ||
.map(|e| match e.as_any().downcast_ref::<$ARRAY_TYPE>() { | ||
Some(array) => Ok(array), | ||
_ => Err(ExecutionError::General("failed to downcast".to_string())), | ||
}) | ||
}}; | ||
} | ||
|
||
macro_rules! array { | ||
($ARGS:expr, $ARRAY_TYPE:ident, $BUILDER_TYPE:ident) => {{ | ||
// downcast all arguments to their common format | ||
let args = | ||
downcast_vec!($ARGS, $ARRAY_TYPE).collect::<Result<Vec<&$ARRAY_TYPE>>>()?; | ||
|
||
let mut builder = FixedSizeListBuilder::<$BUILDER_TYPE>::new( | ||
<$BUILDER_TYPE>::new(args[0].len()), | ||
args.len() as i32, | ||
); | ||
// for each entry in the array | ||
for index in 0..args[0].len() { | ||
for arg in &args { | ||
if arg.is_null(index) { | ||
builder.values().append_null()?; | ||
} else { | ||
builder.values().append_value(arg.value(index))?; | ||
} | ||
} | ||
builder.append(true)?; | ||
} | ||
Ok(Arc::new(builder.finish())) | ||
}}; | ||
} | ||
|
||
/// put values in an array. | ||
pub fn array(args: &[ArrayRef]) -> Result<ArrayRef> { | ||
// do not accept 0 arguments. | ||
if args.len() == 0 { | ||
return Err(ExecutionError::InternalError( | ||
"array requires at least one argument".to_string(), | ||
)); | ||
} | ||
|
||
match args[0].data_type() { | ||
DataType::Utf8 => array!(args, StringArray, StringBuilder), | ||
DataType::LargeUtf8 => array!(args, LargeStringArray, LargeStringBuilder), | ||
DataType::Boolean => array!(args, BooleanArray, BooleanBuilder), | ||
DataType::Float32 => array!(args, Float32Array, Float32Builder), | ||
DataType::Float64 => array!(args, Float64Array, Float64Builder), | ||
DataType::Int8 => array!(args, Int8Array, Int8Builder), | ||
DataType::Int16 => array!(args, Int16Array, Int16Builder), | ||
DataType::Int32 => array!(args, Int32Array, Int32Builder), | ||
DataType::Int64 => array!(args, Int64Array, Int64Builder), | ||
DataType::UInt8 => array!(args, UInt8Array, UInt8Builder), | ||
DataType::UInt16 => array!(args, UInt16Array, UInt16Builder), | ||
DataType::UInt32 => array!(args, UInt32Array, UInt32Builder), | ||
DataType::UInt64 => array!(args, UInt64Array, UInt64Builder), | ||
data_type => Err(ExecutionError::NotImplemented(format!( | ||
"Array is not implemented for type '{:?}'.", | ||
data_type | ||
))), | ||
} | ||
} | ||
|
||
/// Currently supported types by the array function. | ||
/// The order of these types correspond to the order on which coercion applies | ||
/// This should thus be from least informative to most informative | ||
pub static SUPPORTED_ARRAY_TYPES: &'static [DataType] = &[ | ||
DataType::Boolean, | ||
DataType::UInt8, | ||
DataType::UInt16, | ||
DataType::UInt32, | ||
DataType::UInt64, | ||
DataType::Int8, | ||
DataType::Int16, | ||
DataType::Int32, | ||
DataType::Int64, | ||
DataType::Float32, | ||
DataType::Float64, | ||
DataType::Utf8, | ||
DataType::LargeUtf8, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.