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

Method AppendValues

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

Source from the content-addressed store, hash-verified

116}
117
118Status FixedSizeBinaryBuilder::AppendValues(const uint8_t* data, int64_t length,
119 const uint8_t* valid_bytes) {
120 RETURN_NOT_OK(Reserve(length));
121 UnsafeAppendToBitmap(valid_bytes, length);
122 return byte_builder_.Append(data, length * byte_width_);
123}
124
125Status FixedSizeBinaryBuilder::AppendValues(const uint8_t* data, int64_t length,
126 const uint8_t* validity,

Callers

nothing calls this directly

Calls 3

UnsafeAppendToBitmapFunction · 0.85
ReserveFunction · 0.70
AppendMethod · 0.45

Tested by

no test coverage detected