tshauck commented on code in PR #11787: URL: https://github.com/apache/datafusion/pull/11787#discussion_r1702293350
########## 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: Still seems to be happening with this latest push 🤔 ([222263c](https://github.com/apache/datafusion/pull/11787/commits/222263c152c002243e4bed18147758ce0365bb12)). I'll try to poke around and see if I can understand what's happening. -- 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