Skip to content

Commit

Permalink
typo fix in tpch bench script
Browse files Browse the repository at this point in the history
  • Loading branch information
vibhatha committed Jun 22, 2022
1 parent 5754ebb commit dfef8ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/arrow/compute/exec/tpch_benchmark.cc
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ std::shared_ptr<ExecPlan> Plan_Q1(AsyncGenerator<util::optional<ExecBatch>>* sin
auto sum_opts =
std::make_shared<ScalarAggregateOptions>(ScalarAggregateOptions::Defaults());
auto count_opts = std::make_shared<CountOptions>(CountOptions::CountMode::ALL);
std::vector<arrow::compute::internal::Aggregate> aggs = {
std::vector<arrow::compute::Aggregate> aggs = {
{"hash_sum", sum_opts, "sum_qty", "sum_qty"},
{"hash_sum", sum_opts, "sum_base_price", "sum_base_price"},
{"hash_sum", sum_opts, "sum_disc_price", "sum_disc_price"},
Expand Down

0 comments on commit dfef8ec

Please sign in to comment.