Skip to content

Commit 1bf3034

Browse files
committed
Address review comments
1 parent b29cb69 commit 1bf3034

14 files changed

+18
-9
lines changed

cpp/src/arrow/acero/aggregate_node_test.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333

3434
namespace arrow {
3535

36+
using compute::ExecBatchFromJSON;
37+
3638
namespace acero {
3739

3840
Result<std::shared_ptr<Table>> TableGroupBy(

cpp/src/arrow/acero/asof_join_node_test.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ namespace arrow {
6868

6969
using compute::Cast;
7070
using compute::Divide;
71+
using compute::ExecBatchFromJSON;
7172
using compute::Multiply;
7273
using compute::Subtract;
7374

cpp/src/arrow/acero/hash_aggregate_test.cc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,11 @@ using internal::checked_cast;
6969
using internal::checked_pointer_cast;
7070
using internal::ToChars;
7171

72+
using compute::ArgShape;
7273
using compute::CallFunction;
7374
using compute::CountOptions;
7475
using compute::default_exec_context;
76+
using compute::ExecBatchFromJSON;
7577
using compute::ExecSpan;
7678
using compute::FunctionOptions;
7779
using compute::Grouper;
@@ -83,6 +85,7 @@ using compute::SortKey;
8385
using compute::SortOrder;
8486
using compute::Take;
8587
using compute::TDigestOptions;
88+
using compute::ValidateOutput;
8689
using compute::VarianceOptions;
8790

8891
namespace acero {

cpp/src/arrow/acero/hash_join_node_test.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ using compute::and_;
4949
using compute::call;
5050
using compute::default_exec_context;
5151
using compute::ExecBatchBuilder;
52+
using compute::ExecBatchFromJSON;
5253
using compute::ExecSpan;
5354
using compute::field_ref;
5455
using compute::SortIndices;

cpp/src/arrow/acero/plan_test.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,10 @@ using testing::UnorderedElementsAreArray;
5252

5353
namespace arrow {
5454

55+
using compute::ArgShape;
5556
using compute::call;
5657
using compute::CountOptions;
58+
using compute::ExecBatchFromJSON;
5759
using compute::field_ref;
5860
using compute::ScalarAggregateOptions;
5961
using compute::SortKey;

cpp/src/arrow/acero/test_util_internal.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ namespace arrow {
6060
using arrow::internal::CpuInfo;
6161
using arrow::internal::Executor;
6262

63+
using compute::ExecBatchFromJSON;
6364
using compute::SortKey;
6465
using compute::Take;
6566

cpp/src/arrow/compute/kernels/scalar_compare_benchmark.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
#include <vector>
2121

2222
#include "arrow/compute/api_scalar.h"
23-
#include "arrow/compute/function.h"
2423
#include "arrow/compute/kernels/test_util_internal.h"
2524
#include "arrow/testing/gtest_util.h"
2625
#include "arrow/testing/random.h"

cpp/src/arrow/compute/kernels/scalar_random_benchmark.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
#include "arrow/compute/api_scalar.h"
2121
#include "arrow/compute/exec.h"
22-
#include "arrow/compute/function.h"
2322
#include "arrow/testing/gtest_util.h"
2423
#include "arrow/util/benchmark_util.h"
2524

cpp/src/arrow/compute/kernels/scalar_string_benchmark.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include "arrow/array.h"
2323
#include "arrow/chunked_array.h"
2424
#include "arrow/compute/api_scalar.h"
25-
#include "arrow/compute/function.h"
25+
#include "arrow/compute/exec.h"
2626
#include "arrow/datum.h"
2727
#include "arrow/testing/gtest_util.h"
2828
#include "arrow/testing/random.h"

cpp/src/arrow/compute/kernels/vector_sort_benchmark.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#include "arrow/array.h"
2121
#include "arrow/chunked_array.h"
2222
#include "arrow/compute/api_vector.h"
23-
#include "arrow/compute/function.h"
23+
#include "arrow/compute/exec.h"
2424
#include "arrow/datum.h"
2525
#include "arrow/table.h"
2626
#include "arrow/testing/gtest_util.h"

0 commit comments

Comments
 (0)