joosthooz commented on a change in pull request #12089:
URL: https://github.com/apache/arrow/pull/12089#discussion_r783268377
##########
File path: cpp/src/arrow/compute/api_scalar.cc
##########
@@ -732,6 +732,11 @@ Result<Datum> IsNull(const Datum& arg, NullOptions
options, ExecContext* ctx) {
return CallFunction("is_null", {arg}, &options, ctx);
}
+Result<Datum> Misbehave(const Datum& cond, const Datum& if_true, const Datum&
if_false,
+ ExecContext* ctx) {
+ return CallFunction("misbehave", {}, ctx);
+}
Review comment:
I've removed them again, also from the function registry. I'm now using
a different way of calling the function through an executor, instead of going
through `CallFunction`
--
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]