gstvg commented on code in PR #22593:
URL: https://github.com/apache/datafusion/pull/22593#discussion_r3319297358
##########
datafusion/expr/src/higher_order_function.rs:
##########
@@ -815,6 +819,304 @@ pub trait HigherOrderUDF: Debug + DynEq + DynHash + Send
+ Sync + Any {
}
}
+/// Logical representation of a Higher Order User Defined Function.
+///
+/// A higher order function takes one or more lambda arguments in addition to
+/// regular value arguments. This struct contains the information DataFusion
+/// needs to plan and invoke functions you supply such as name, type signature,
+/// return type, and actual implementation.
+///
+/// For advanced use cases, implement [`HigherOrderUDFImpl`] which provides the
+/// full API.
Review Comment:
Is this part necessary?
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]