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

Function AppendNulls

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

Source from the content-addressed store, hash-verified

651 Status ReserveData(int64_t length);
652
653 Status AppendNulls(int64_t length) final {
654 ARROW_RETURN_NOT_OK(Reserve(length));
655 data_builder_.UnsafeAppend(length, BinaryViewType::c_type{});
656 UnsafeSetNull(length);
657 return Status::OK();
658 }
659
660 /// \brief Append a single null element
661 Status AppendNull() final {

Callers

nothing calls this directly

Calls 3

ReserveFunction · 0.70
OKFunction · 0.50
UnsafeAppendMethod · 0.45

Tested by

no test coverage detected