Skip to content

Commit 50d3a02

Browse files
author
Rafał Hibner
committed
Merge branch 'BackpressureCombiner' of https://github.com/gitmodimo/arrow into BackpressureCombiner
2 parents 5f2f9ac + ba14f4c commit 50d3a02

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

cpp/src/arrow/acero/backpressure.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
#include "arrow/acero/exec_plan.h"
2020

2121
namespace arrow::acero {
22+
2223
BackpressureController::BackpressureController(ExecNode* node, ExecNode* output,
2324
std::atomic<int32_t>& backpressure_counter)
2425
: node_(node), output_(output), backpressure_counter_(backpressure_counter) {}

cpp/src/arrow/acero/backpressure.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,11 @@
1616
// under the License.
1717

1818
#pragma once
19-
#include "arrow/acero/options.h"
2019

2120
#include <mutex>
21+
22+
#include "arrow/acero/options.h"
23+
2224
namespace arrow::acero {
2325

2426
// Generic backpressure controller for ExecNode

0 commit comments

Comments
 (0)