Omega359 commented on issue #13330: URL: https://github.com/apache/datafusion/issues/13330#issuecomment-2468804783
None of the crypto functions support UTF8View directly as a input type. For example [digest](https://github.com/apache/datafusion/blob/main/datafusion/functions/src/crypto/digest.rs): ```Rust signature: Signature::one_of( vec![ Exact(vec![Utf8, Utf8]), Exact(vec![LargeUtf8, Utf8]), Exact(vec![Binary, Utf8]), Exact(vec![LargeBinary, Utf8]), ], Volatility::Immutable, ), ``` -- 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]
