alamb commented on code in PR #6281:
URL: https://github.com/apache/arrow-datafusion/pull/6281#discussion_r1187572265
##########
datafusion/expr/src/expr.rs:
##########
@@ -353,6 +348,22 @@ impl Between {
}
}
+/// ScalarFunction expression
+#[derive(Clone, PartialEq, Eq, Hash)]
+pub struct ScalarFunction {
+ /// The function
+ pub fun: built_in_function::BuiltinScalarFunction,
Review Comment:
I would love, long term, to remove the difference between `ScalarFunction`
and `ScalarUDF` (aka have a single way of calling functions for built in and
extension functions)
--
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]