Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
JerAguilon committed Feb 16, 2024
1 parent 54913ae commit 3ac1ca4
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions cpp/src/arrow/compute/expression_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
// under the License.

#include "arrow/compute/expression.h"
#include <arrow/compute/api_aggregate.h> // TODO


#include <chrono>
#include <cstdint>
Expand Down Expand Up @@ -79,9 +77,7 @@ Expression true_unless_null(Expression argument) {
return call("true_unless_null", {std::move(argument)});
}

Expression last(Expression l) {
return call("last", {std::move(l)});
}
Expression last(Expression l) { return call("last", {std::move(l)}); }

Expression add(Expression l, Expression r) {
return call("add", {std::move(l), std::move(r)});
Expand Down

0 comments on commit 3ac1ca4

Please sign in to comment.