We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f16de44 commit d0bf3baCopy full SHA for d0bf3ba
datafusion/functions/src/string/concat.rs
@@ -72,7 +72,8 @@ impl ScalarUDFImpl for ConcatFunc {
72
arg_types.iter().for_each(|data_type| {
73
if data_type == &Utf8View {
74
dt = data_type;
75
- } else if data_type == &LargeUtf8 && dt != &Utf8View {
+ }
76
+ if data_type == &LargeUtf8 && dt != &Utf8View {
77
78
}
79
});
@@ -87,7 +88,8 @@ impl ScalarUDFImpl for ConcatFunc {
87
88
args.iter().for_each(|col| {
89
if col.data_type() == DataType::Utf8View {
90
return_datatype = col.data_type();
- } else if col.data_type() == DataType::LargeUtf8
91
92
+ if col.data_type() == DataType::LargeUtf8
93
&& return_datatype != DataType::Utf8View
94
{
95
0 commit comments