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

Method AppendNull

cpp/src/arrow/array/builder_binary.cc:133–137  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

131}
132
133Status FixedSizeBinaryBuilder::AppendNull() {
134 RETURN_NOT_OK(Reserve(1));
135 UnsafeAppendNull();
136 return Status::OK();
137}
138
139Status FixedSizeBinaryBuilder::AppendNulls(int64_t length) {
140 RETURN_NOT_OK(Reserve(length));

Callers

nothing calls this directly

Calls 3

ReserveFunction · 0.70
UnsafeAppendNullFunction · 0.70
OKFunction · 0.50

Tested by

no test coverage detected