Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion cpp/src/arrow/compute/exec/hash_join_benchmark.cc
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,8 @@ class JoinBenchmark {
&ctx_, settings.join_type, settings.num_threads, &(schema_mgr_->proj_maps[0]),
&(schema_mgr_->proj_maps[1]), std::move(key_cmp), std::move(filter),
std::move(register_task_group_callback), std::move(start_task_group_callback),
[](int64_t, ExecBatch) {}, [](int64_t x) {}));
[](int64_t, ExecBatch) { return Status::OK(); },
[](int64_t) { return Status::OK(); }));

task_group_probe_ = scheduler_->RegisterTaskGroup(
[this](size_t thread_index, int64_t task_id) -> Status {
Expand Down