jorisvandenbossche commented on a change in pull request #8294:
URL: https://github.com/apache/arrow/pull/8294#discussion_r522942123



##########
File path: cpp/src/arrow/compute/api_aggregate.cc
##########
@@ -41,8 +41,12 @@ Result<Datum> MinMax(const Datum& value, const 
MinMaxOptions& options, ExecConte
   return CallFunction("min_max", {value}, &options, ctx);
 }
 
-Result<Datum> Mode(const Datum& value, const ModeOptions& options, 
ExecContext* ctx) {
-  return CallFunction("mode", {value}, &options, ctx);
+Result<Datum> Any(const Datum& value, ExecContext* ctx) {
+  return CallFunction("any", {value}, ctx);
+}
+
+Result<Datum> Mode(const Datum& value, ExecContext* ctx) {

Review comment:
       The ModeOptions are dropped here, might be a rebase error?




----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to