alamb commented on code in PR #17650: URL: https://github.com/apache/datafusion/pull/17650#discussion_r2363367266
########## datafusion/expr/src/registry.rs: ########## @@ -27,9 +27,25 @@ use std::sync::Arc; /// A registry knows how to build logical expressions out of user-defined function' names pub trait FunctionRegistry { - /// Set of all available udfs. + /// Returns names of all available scalar user defined functions. fn udfs(&self) -> HashSet<String>; + /// Returns names of all available aggregate user defined functions. + fn udafs(&self) -> HashSet<String> { + // This default implementation is provided temporarily Review Comment: 👍 -- 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