MCPcopy Create free account
hub / github.com/apache/arrow / AppendEmptyValues

Function AppendEmptyValues

cpp/src/arrow/array/builder_binary.h:677–682  ·  view source on GitHub ↗

\brief Append several empty elements

Source from the content-addressed store, hash-verified

675
676 /// \brief Append several empty elements
677 Status AppendEmptyValues(int64_t length) final {
678 ARROW_RETURN_NOT_OK(Reserve(length));
679 data_builder_.UnsafeAppend(length, BinaryViewType::c_type{});
680 UnsafeSetNotNull(length);
681 return Status::OK();
682 }
683
684 void UnsafeAppendNull() {
685 data_builder_.UnsafeAppend(BinaryViewType::c_type{});

Callers

nothing calls this directly

Calls 3

ReserveFunction · 0.70
OKFunction · 0.50
UnsafeAppendMethod · 0.45

Tested by

no test coverage detected