pitrou commented on code in PR #14043:
URL: https://github.com/apache/arrow/pull/14043#discussion_r983565053
##########
cpp/src/arrow/compute/function.h:
##########
@@ -159,6 +159,20 @@ struct ARROW_EXPORT FunctionDoc {
static const FunctionDoc& Empty();
};
+/// \brief An executor of a function with a preconfigured kernel
+struct ARROW_EXPORT FunctionExecutor {
+ virtual ~FunctionExecutor() = default;
+ /// \brief Initialize a preconfigured kernel
+ ///
+ /// This method may be called zero or more times. By default, the kernel is
initialized
+ /// with default function options and exec context.
Review Comment:
Default function options, or the one initially passed to
`GetFunctionExecutor`?
--
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]