Skip to content

Commit 8e3a1e1

Browse files
authored
MINOR: [C++] Replaced uint32_t with uint64_t in BackpressureOptions constructor (#14578)
In the `BackpressureOptions` constructor the arguments are in `uint32_t` format, but the member variables are in `uint64_t`. Fixing it in this PR. Authored-by: Vibhatha Lakmal Abeykoon <vibhatha@gmail.com> Signed-off-by: Weston Pace <weston.pace@gmail.com>
1 parent e1883ae commit 8e3a1e1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cpp/src/arrow/compute/exec/options.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ struct ARROW_EXPORT BackpressureOptions {
143143
/// queue has fewer than resume_if_below items.
144144
/// \param pause_if_above The producer should pause producing if the backpressure
145145
/// queue has more than pause_if_above items
146-
BackpressureOptions(uint32_t resume_if_below, uint32_t pause_if_above)
146+
BackpressureOptions(uint64_t resume_if_below, uint64_t pause_if_above)
147147
: resume_if_below(resume_if_below), pause_if_above(pause_if_above) {}
148148

149149
static BackpressureOptions DefaultBackpressure() {

0 commit comments

Comments
 (0)