dharanad commented on code in PR #11787: URL: https://github.com/apache/datafusion/pull/11787#discussion_r1702170024
########## datafusion/functions/src/string/starts_with.rs: ########## @@ -53,16 +76,18 @@ impl Default for StartsWithFunc { impl StartsWithFunc { pub fn new() -> Self { use DataType::*; + + let string_types = vec![Utf8, LargeUtf8, Utf8View]; + let mut type_signatures = vec![]; + + for left in &string_types { Review Comment: This is a interesting idea, i liked it compared to earlier implementation. -- 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