This is an automated email from the ASF dual-hosted git repository. bkietz pushed a commit to branch feature/format-string-view in repository https://gitbox.apache.org/repos/asf/arrow.git
commit 20d89459f1c3f328f564ad484cc7868be1aff0b0 Author: Tobias Zagorni <[email protected]> AuthorDate: Tue Oct 18 17:14:16 2022 +0200 BinaryViewBuilder: fix duplicate values in null bitmap --- cpp/src/arrow/array/builder_binary.h | 1 - 1 file changed, 1 deletion(-) diff --git a/cpp/src/arrow/array/builder_binary.h b/cpp/src/arrow/array/builder_binary.h index c716e6d225..ca5209b81e 100644 --- a/cpp/src/arrow/array/builder_binary.h +++ b/cpp/src/arrow/array/builder_binary.h @@ -563,7 +563,6 @@ class ARROW_EXPORT BinaryViewBuilder : public ArrayBuilder { ARROW_ASSIGN_OR_RAISE(value, data_heap_builder_.Append(value, length)); } UnsafeAppend(StringHeader(value, length)); - UnsafeAppendToBitmap(true); return Status::OK(); }
