alamb commented on code in PR #13370:
URL: https://github.com/apache/datafusion/pull/13370#discussion_r1936327292
##########
datafusion/expr-common/src/type_coercion/binary.rs:
##########
@@ -1172,16 +1174,22 @@ fn binary_to_string_coercion(
match (lhs_type, rhs_type) {
(Binary, Utf8) => Some(Utf8),
(Binary, LargeUtf8) => Some(LargeUtf8),
+ (Binary, Utf8View) => Some(Utf8View),
Review Comment:
These rules would allow running `binary like utf8view` -- do we have a
usecase for that? We could write tests for it, but I don't think it would be
widely used 🤔
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]