We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d00a085 commit 9459be0Copy full SHA for 9459be0
datafusion/expr-common/src/type_coercion/binary.rs
@@ -334,7 +334,10 @@ impl From<&DataType> for TypeCategory {
334
// therefore, it is categorized as a unknown type
335
if matches!(
336
data_type,
337
- DataType::Utf8 | DataType::LargeUtf8 | DataType::Null
+ DataType::Utf8
338
+ | DataType::LargeUtf8
339
+ | DataType::Utf8View
340
+ | DataType::Null
341
) {
342
return TypeCategory::Unknown;
343
}
0 commit comments