Skip to content

Commit dd4fa79

Browse files
authored
Add support for Utf8View to string_to_array and array_to_string (#13403)
* Directly support utf8view in array_to_string & string_to_array. #13383 * Update to have output data type match input data type. * Return type cleanup. * Updated to properly handle returning largeutf8 + code refactor and a few more tests.
1 parent c194d94 commit dd4fa79

File tree

4 files changed

+399
-91
lines changed

4 files changed

+399
-91
lines changed

datafusion/expr-common/src/signature.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ pub enum TypeSignature {
131131
Numeric(usize),
132132
/// Fixed number of arguments of all the same string types.
133133
/// The precedence of type from high to low is Utf8View, LargeUtf8 and Utf8.
134-
/// Null is considerd as `Utf8` by default
134+
/// Null is considered as `Utf8` by default
135135
/// Dictionary with string value type is also handled.
136136
String(usize),
137137
/// Zero argument

0 commit comments

Comments
 (0)