Omega359 commented on code in PR #14087: URL: https://github.com/apache/datafusion/pull/14087#discussion_r1915125736
########## datafusion/functions/src/encoding/inner.rs: ########## @@ -87,7 +87,20 @@ impl ScalarUDFImpl for EncodeFunc { } fn return_type(&self, arg_types: &[DataType]) -> Result<DataType> { - Ok(arg_types[0].to_owned()) + use DataType::*; + + Ok(match arg_types[0] { + Utf8 => Utf8, Review Comment: ```suggestion Utf8 => Utf8, Utf8View => Utf8, ``` -- 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: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org