-
Notifications
You must be signed in to change notification settings - Fork 2k
Make lower and upper emit Utf8View for Utf8View input #20616
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,7 +22,7 @@ use std::sync::Arc; | |
| use crate::strings::make_and_append_view; | ||
| use arrow::array::{ | ||
| Array, ArrayRef, GenericStringArray, GenericStringBuilder, NullBufferBuilder, | ||
| OffsetSizeTrait, StringBuilder, StringViewArray, new_null_array, | ||
| OffsetSizeTrait, StringBuilder, StringViewArray, StringViewBuilder, new_null_array, | ||
| }; | ||
| use arrow::buffer::{Buffer, ScalarBuffer}; | ||
| use arrow::datatypes::DataType; | ||
|
|
@@ -332,17 +332,34 @@ fn string_trim<T: OffsetSizeTrait, Tr: Trimmer>(args: &[ArrayRef]) -> Result<Arr | |
| } | ||
|
|
||
| pub(crate) fn to_lower(args: &[ColumnarValue], name: &str) -> Result<ColumnarValue> { | ||
| case_conversion(args, |string| string.to_lowercase(), name) | ||
| case_conversion( | ||
| args, | ||
| |string| string.to_lowercase(), | ||
| name, | ||
| Utf8ViewOutput::Utf8View, | ||
| ) | ||
| } | ||
|
|
||
| pub(crate) fn to_upper(args: &[ColumnarValue], name: &str) -> Result<ColumnarValue> { | ||
| case_conversion(args, |string| string.to_uppercase(), name) | ||
| case_conversion( | ||
| args, | ||
| |string| string.to_uppercase(), | ||
| name, | ||
| Utf8ViewOutput::Utf8, | ||
| ) | ||
| } | ||
|
|
||
| #[derive(Debug, Clone, Copy)] | ||
| enum Utf8ViewOutput { | ||
| Utf8, | ||
| Utf8View, | ||
| } | ||
|
|
||
| fn case_conversion<'a, F>( | ||
| args: &'a [ColumnarValue], | ||
| op: F, | ||
| name: &str, | ||
| utf8view_output: Utf8ViewOutput, | ||
| ) -> Result<ColumnarValue> | ||
| where | ||
| F: Fn(&'a str) -> String, | ||
|
|
@@ -358,20 +375,38 @@ where | |
| >(array, op)?)), | ||
| DataType::Utf8View => { | ||
| let string_array = as_string_view_array(array)?; | ||
| let mut string_builder = StringBuilder::with_capacity( | ||
| string_array.len(), | ||
| string_array.get_array_memory_size(), | ||
| ); | ||
|
|
||
| for str in string_array.iter() { | ||
| if let Some(str) = str { | ||
| string_builder.append_value(op(str)); | ||
| } else { | ||
| string_builder.append_null(); | ||
| match utf8view_output { | ||
| Utf8ViewOutput::Utf8 => { | ||
|
||
| let mut string_builder = StringBuilder::with_capacity( | ||
| string_array.len(), | ||
| string_array.get_array_memory_size(), | ||
| ); | ||
|
|
||
| for str in string_array.iter() { | ||
| if let Some(str) = str { | ||
| string_builder.append_value(op(str)); | ||
| } else { | ||
| string_builder.append_null(); | ||
| } | ||
| } | ||
|
|
||
| Ok(ColumnarValue::Array(Arc::new(string_builder.finish()))) | ||
| } | ||
| Utf8ViewOutput::Utf8View => { | ||
| let mut string_builder = | ||
| StringViewBuilder::with_capacity(string_array.len()); | ||
|
|
||
| for str in string_array.iter() { | ||
| if let Some(str) = str { | ||
| string_builder.append_value(op(str)); | ||
| } else { | ||
| string_builder.append_null(); | ||
| } | ||
| } | ||
|
|
||
| Ok(ColumnarValue::Array(Arc::new(string_builder.finish()))) | ||
| } | ||
| } | ||
|
|
||
| Ok(ColumnarValue::Array(Arc::new(string_builder.finish()))) | ||
| } | ||
| other => exec_err!("Unsupported data type {other:?} for function {name}"), | ||
| }, | ||
|
|
@@ -386,7 +421,14 @@ where | |
| } | ||
| ScalarValue::Utf8View(a) => { | ||
| let result = a.as_ref().map(|x| op(x)); | ||
| Ok(ColumnarValue::Scalar(ScalarValue::Utf8(result))) | ||
| match utf8view_output { | ||
| Utf8ViewOutput::Utf8 => { | ||
| Ok(ColumnarValue::Scalar(ScalarValue::Utf8(result))) | ||
| } | ||
| Utf8ViewOutput::Utf8View => { | ||
| Ok(ColumnarValue::Scalar(ScalarValue::Utf8View(result))) | ||
| } | ||
| } | ||
| } | ||
| other => exec_err!("Unsupported data type {other:?} for function {name}"), | ||
| }, | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -82,7 +82,11 @@ impl ScalarUDFImpl for LowerFunc { | |
| } | ||
|
|
||
| fn return_type(&self, arg_types: &[DataType]) -> Result<DataType> { | ||
| utf8_to_str_type(&arg_types[0], "lower") | ||
| if arg_types[0] == DataType::Utf8View { | ||
| Ok(DataType::Utf8View) | ||
| } else { | ||
| utf8_to_str_type(&arg_types[0], "lower") | ||
|
||
| } | ||
| } | ||
|
|
||
| fn invoke_with_args(&self, args: ScalarFunctionArgs) -> Result<ColumnarValue> { | ||
|
|
@@ -97,8 +101,7 @@ impl ScalarUDFImpl for LowerFunc { | |
| #[cfg(test)] | ||
| mod tests { | ||
| use super::*; | ||
| use arrow::array::{Array, ArrayRef, StringArray}; | ||
| use arrow::datatypes::DataType::Utf8; | ||
| use arrow::array::{Array, ArrayRef, StringArray, StringViewArray}; | ||
| use arrow::datatypes::Field; | ||
| use datafusion_common::config::ConfigOptions; | ||
| use std::sync::Arc; | ||
|
|
@@ -111,7 +114,7 @@ mod tests { | |
| number_rows: input.len(), | ||
| args: vec![ColumnarValue::Array(input)], | ||
| arg_fields, | ||
| return_field: Field::new("f", Utf8, true).into(), | ||
| return_field: Field::new("f", expected.data_type().clone(), true).into(), | ||
| config_options: Arc::new(ConfigOptions::default()), | ||
| }; | ||
|
|
||
|
|
@@ -197,4 +200,21 @@ mod tests { | |
|
|
||
| to_lower(input, expected) | ||
| } | ||
|
|
||
| #[test] | ||
| fn lower_utf8view() -> Result<()> { | ||
| let input = Arc::new(StringViewArray::from(vec![ | ||
| Some("ARROW"), | ||
| None, | ||
| Some("TSCHÜSS"), | ||
| ])) as ArrayRef; | ||
|
|
||
| let expected = Arc::new(StringViewArray::from(vec![ | ||
| Some("arrow"), | ||
| None, | ||
| Some("tschüss"), | ||
| ])) as ArrayRef; | ||
|
|
||
| to_lower(input, expected) | ||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we need a new enum -- can't we just pass the return data type the caller expects?