shehabgamin commented on issue #14123: URL: https://github.com/apache/datafusion/issues/14123#issuecomment-2684612667
> I am running into one error in Comet: `Function sha256 does not implement invoke but called`. I will investigate this today. @andygrove I encountered the same error with various `UDF`s. I resolved it by replacing all `.invoke()` and `.invoke_batch()`calls with `.invoke_with_args()`. It seems that support for `invoke()` and `invoke_batch()` is now questionable, so it's probably a good idea to make sure that any `ScalarUDFImpl`s use `invoke_with_args()`. @xudong963 I've created a draft PR to upgrade Sail to use latest DataFusion: https://github.com/lakehq/sail/pull/388 There is a concerning regression appearing frequently in Sail tests: ``` Physical plan does not support logical expression Wildcard { qualifier: None, options: WildcardOptions { ilike: None, exclude: None, except: None, replace: None, rename: None } } ``` Here is an example query where this occurs: ``` SELECT count(*) FROM VALUES (NULL), (5), (5), (20) AS tab(col); ``` This error also appears 24 times across various TPC-DS and TPC-H tests for Sail, whereas it did not previously. -- 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