pitrou commented on a change in pull request #8990:
URL: https://github.com/apache/arrow/pull/8990#discussion_r644963432
##########
File path: cpp/src/arrow/array/builder_binary.h
##########
@@ -77,6 +77,23 @@ class BaseBinaryBuilder : public ArrayBuilder {
return Append(value.data(), static_cast<offset_type>(value.size()));
}
+ /// Append to the last appended value
+ ///
+ /// Unlike Append, this does not create a new offset.
+ Status AppendToCurrent(const uint8_t* value, offset_type length) {
Review comment:
Probably, though `UpdateLast` doesn't convey the idea of actually
appending to the last value. Any other idea?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]