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

Method FinishInternal

cpp/src/arrow/array/builder_primitive.cc:41–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39// Null builder
40
41Status NullBuilder::FinishInternal(std::shared_ptr<ArrayData>* out) {
42 *out = ArrayData::Make(null(), length_, {nullptr}, length_);
43 length_ = null_count_ = 0;
44 return Status::OK();
45}
46
47BooleanBuilder::BooleanBuilder(MemoryPool* pool, int64_t alignment)
48 : ArrayBuilder(pool, alignment), data_builder_(pool, alignment) {}

Callers

nothing calls this directly

Calls 2

MakeFunction · 0.70
OKFunction · 0.50

Tested by

no test coverage detected