Skip to content

Commit 9b5e805

Browse files
authored
Update ReserveData(int64_t) method signature for BinaryBuilder
Replace parameter name from "bytes" to "capacity" to avoid confusion.
1 parent 8dd5eaa commit 9b5e805

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/src/arrow/builder.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@ class ARROW_EXPORT BinaryBuilder : public ArrayBuilder {
682682

683683
Status Init(int64_t elements) override;
684684
Status Resize(int64_t capacity) override;
685-
Status ReserveData(int64_t bytes);
685+
Status ReserveData(int64_t capacity);
686686
Status FinishInternal(std::shared_ptr<ArrayData>* out) override;
687687

688688
/// \return size of values buffer so far

0 commit comments

Comments
 (0)