| // 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. |
| |
| use std::any::Any; |
| use std::cmp::{max, Ordering}; |
| use std::sync::Arc; |
| |
| use arrow::array::{ |
| Array, ArrayAccessor, ArrayIter, ArrayRef, GenericStringArray, Int64Array, |
| OffsetSizeTrait, |
| }; |
| use arrow::datatypes::DataType; |
| |
| use crate::utils::{make_scalar_function, utf8_to_str_type}; |
| use datafusion_common::cast::{ |
| as_generic_string_array, as_int64_array, as_string_view_array, |
| }; |
| use datafusion_common::exec_err; |
| use datafusion_common::Result; |
| use datafusion_expr::TypeSignature::Exact; |
| use datafusion_expr::{ |
| ColumnarValue, Documentation, ScalarUDFImpl, Signature, Volatility, |
| }; |
| use datafusion_macros::user_doc; |
| |
| #[user_doc( |
| doc_section(label = "String Functions"), |
| description = "Returns a specified number of characters from the right side of a string.", |
| syntax_example = "right(str, n)", |
| sql_example = r#"```sql |
| > select right('datafusion', 6); |
| +------------------------------------+ |
| | right(Utf8("datafusion"),Int64(6)) | |
| +------------------------------------+ |
| | fusion | |
| +------------------------------------+ |
| ```"#, |
| standard_argument(name = "str", prefix = "String"), |
| argument(name = "n", description = "Number of characters to return."), |
| related_udf(name = "left") |
| )] |
| #[derive(Debug, PartialEq, Eq, Hash)] |
| pub struct RightFunc { |
| signature: Signature, |
| } |
| |
| impl Default for RightFunc { |
| fn default() -> Self { |
| Self::new() |
| } |
| } |
| |
| impl RightFunc { |
| pub fn new() -> Self { |
| use DataType::*; |
| Self { |
| signature: Signature::one_of( |
| vec![ |
| Exact(vec![Utf8View, Int64]), |
| Exact(vec![Utf8, Int64]), |
| Exact(vec![LargeUtf8, Int64]), |
| ], |
| Volatility::Immutable, |
| ), |
| } |
| } |
| } |
| |
| impl ScalarUDFImpl for RightFunc { |
| fn as_any(&self) -> &dyn Any { |
| self |
| } |
| |
| fn name(&self) -> &str { |
| "right" |
| } |
| |
| fn signature(&self) -> &Signature { |
| &self.signature |
| } |
| |
| fn return_type(&self, arg_types: &[DataType]) -> Result<DataType> { |
| utf8_to_str_type(&arg_types[0], "right") |
| } |
| |
| fn invoke_with_args( |
| &self, |
| args: datafusion_expr::ScalarFunctionArgs, |
| ) -> Result<ColumnarValue> { |
| let args = &args.args; |
| match args[0].data_type() { |
| DataType::Utf8 | DataType::Utf8View => { |
| make_scalar_function(right::<i32>, vec![])(args) |
| } |
| DataType::LargeUtf8 => make_scalar_function(right::<i64>, vec![])(args), |
| other => exec_err!( |
| "Unsupported data type {other:?} for function right,\ |
| expected Utf8View, Utf8 or LargeUtf8." |
| ), |
| } |
| } |
| |
| fn documentation(&self) -> Option<&Documentation> { |
| self.doc() |
| } |
| } |
| |
| /// Returns last n characters in the string, or when n is negative, returns all but first |n| characters. |
| /// right('abcde', 2) = 'de' |
| /// The implementation uses UTF-8 code points as characters |
| pub fn right<T: OffsetSizeTrait>(args: &[ArrayRef]) -> Result<ArrayRef> { |
| let n_array = as_int64_array(&args[1])?; |
| if args[0].data_type() == &DataType::Utf8View { |
| // string_view_right(args) |
| let string_array = as_string_view_array(&args[0])?; |
| right_impl::<T, _>(&mut string_array.iter(), n_array) |
| } else { |
| // string_right::<T>(args) |
| let string_array = &as_generic_string_array::<T>(&args[0])?; |
| right_impl::<T, _>(&mut string_array.iter(), n_array) |
| } |
| } |
| |
| // Currently the return type can only be Utf8 or LargeUtf8, to reach fully support, we need |
| // to edit the `get_optimal_return_type` in utils.rs to make the udfs be able to return Utf8View |
| // See https://github.com/apache/datafusion/issues/11790#issuecomment-2283777166 |
| fn right_impl<'a, T: OffsetSizeTrait, V: ArrayAccessor<Item = &'a str>>( |
| string_array_iter: &mut ArrayIter<V>, |
| n_array: &Int64Array, |
| ) -> Result<ArrayRef> { |
| let result = string_array_iter |
| .zip(n_array.iter()) |
| .map(|(string, n)| match (string, n) { |
| (Some(string), Some(n)) => match n.cmp(&0) { |
| Ordering::Less => Some( |
| string |
| .chars() |
| .skip(n.unsigned_abs() as usize) |
| .collect::<String>(), |
| ), |
| Ordering::Equal => Some("".to_string()), |
| Ordering::Greater => Some( |
| string |
| .chars() |
| .skip(max(string.chars().count() as i64 - n, 0) as usize) |
| .collect::<String>(), |
| ), |
| }, |
| _ => None, |
| }) |
| .collect::<GenericStringArray<T>>(); |
| |
| Ok(Arc::new(result) as ArrayRef) |
| } |
| |
| #[cfg(test)] |
| mod tests { |
| use arrow::array::{Array, StringArray}; |
| use arrow::datatypes::DataType::Utf8; |
| |
| use datafusion_common::{Result, ScalarValue}; |
| use datafusion_expr::{ColumnarValue, ScalarUDFImpl}; |
| |
| use crate::unicode::right::RightFunc; |
| use crate::utils::test::test_function; |
| |
| #[test] |
| fn test_functions() -> Result<()> { |
| test_function!( |
| RightFunc::new(), |
| vec![ |
| ColumnarValue::Scalar(ScalarValue::from("abcde")), |
| ColumnarValue::Scalar(ScalarValue::from(2i64)), |
| ], |
| Ok(Some("de")), |
| &str, |
| Utf8, |
| StringArray |
| ); |
| test_function!( |
| RightFunc::new(), |
| vec![ |
| ColumnarValue::Scalar(ScalarValue::from("abcde")), |
| ColumnarValue::Scalar(ScalarValue::from(200i64)), |
| ], |
| Ok(Some("abcde")), |
| &str, |
| Utf8, |
| StringArray |
| ); |
| test_function!( |
| RightFunc::new(), |
| vec![ |
| ColumnarValue::Scalar(ScalarValue::from("abcde")), |
| ColumnarValue::Scalar(ScalarValue::from(-2i64)), |
| ], |
| Ok(Some("cde")), |
| &str, |
| Utf8, |
| StringArray |
| ); |
| test_function!( |
| RightFunc::new(), |
| vec![ |
| ColumnarValue::Scalar(ScalarValue::from("abcde")), |
| ColumnarValue::Scalar(ScalarValue::from(-200i64)), |
| ], |
| Ok(Some("")), |
| &str, |
| Utf8, |
| StringArray |
| ); |
| test_function!( |
| RightFunc::new(), |
| vec![ |
| ColumnarValue::Scalar(ScalarValue::from("abcde")), |
| ColumnarValue::Scalar(ScalarValue::from(0i64)), |
| ], |
| Ok(Some("")), |
| &str, |
| Utf8, |
| StringArray |
| ); |
| test_function!( |
| RightFunc::new(), |
| vec![ |
| ColumnarValue::Scalar(ScalarValue::Utf8(None)), |
| ColumnarValue::Scalar(ScalarValue::from(2i64)), |
| ], |
| Ok(None), |
| &str, |
| Utf8, |
| StringArray |
| ); |
| test_function!( |
| RightFunc::new(), |
| vec![ |
| ColumnarValue::Scalar(ScalarValue::from("abcde")), |
| ColumnarValue::Scalar(ScalarValue::Int64(None)), |
| ], |
| Ok(None), |
| &str, |
| Utf8, |
| StringArray |
| ); |
| test_function!( |
| RightFunc::new(), |
| vec![ |
| ColumnarValue::Scalar(ScalarValue::from("joséésoj")), |
| ColumnarValue::Scalar(ScalarValue::from(5i64)), |
| ], |
| Ok(Some("éésoj")), |
| &str, |
| Utf8, |
| StringArray |
| ); |
| test_function!( |
| RightFunc::new(), |
| vec![ |
| ColumnarValue::Scalar(ScalarValue::from("joséésoj")), |
| ColumnarValue::Scalar(ScalarValue::from(-3i64)), |
| ], |
| Ok(Some("éésoj")), |
| &str, |
| Utf8, |
| StringArray |
| ); |
| #[cfg(not(feature = "unicode_expressions"))] |
| test_function!( |
| RightFunc::new(), |
| &[ |
| ColumnarValue::Scalar(ScalarValue::from("abcde")), |
| ColumnarValue::Scalar(ScalarValue::from(2i64)), |
| ], |
| internal_err!( |
| "function right requires compilation with feature flag: unicode_expressions." |
| ), |
| &str, |
| Utf8, |
| StringArray |
| ); |
| |
| Ok(()) |
| } |
| } |