viirya commented on code in PR #9075:
URL: https://github.com/apache/arrow-datafusion/pull/9075#discussion_r1479149090
##########
datafusion/execution/src/registry.rs:
##########
@@ -27,13 +27,16 @@ pub trait FunctionRegistry {
/// Set of all available udfs.
fn udfs(&self) -> HashSet<String>;
- /// Returns a reference to the udf named `name`.
+ /// Returns a reference to the user defined scalar function (udf) named
+ /// `name`.
fn udf(&self, name: &str) -> Result<Arc<ScalarUDF>>;
- /// Returns a reference to the udaf named `name`.
+ /// Returns a reference to the user defined table function (udaf) named
Review Comment:
```suggestion
/// Returns a reference to the user defined aggregate function (udaf)
named
```
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]