You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Utf8View currently is matching as Unsupported but should be matched as unknown in TypeCategory::from
// String literal is possible to cast to many other types like numeric or datetime,
// therefore, it is categorized as an unknown type
if matches!(
data_type,
DataType::Utf8 | LargeUtf8 | DataType::Null
) {
return TypeCategory::Unknown;
}
This should include Utf8View
To Reproduce
See code.
Expected behavior
Utf8View should map to TypeCategory::Unknown
Additional context
No response
The text was updated successfully, but these errors were encountered:
Describe the bug
Utf8View currently is matching as Unsupported but should be matched as unknown in TypeCategory::from
This should include Utf8View
To Reproduce
See code.
Expected behavior
Utf8View should map to TypeCategory::Unknown
Additional context
No response
The text was updated successfully, but these errors were encountered: