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

Method FinishInternal

cpp/src/arrow/array/builder_dict.h:528–536  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

526 }
527
528 Status FinishInternal(std::shared_ptr<ArrayData>* out) override {
529 std::shared_ptr<ArrayData> dictionary;
530 ARROW_RETURN_NOT_OK(FinishWithDictOffset(/*offset=*/0, out, &dictionary));
531
532 // Set type of array data to the right dictionary type
533 (*out)->type = type();
534 (*out)->dictionary = dictionary;
535 return Status::OK();
536 }
537
538 Status FinishWithDictOffset(int64_t dict_offset,
539 std::shared_ptr<ArrayData>* out_indices,

Callers 2

FinishWithDictOffsetMethod · 0.45
FinishInternalMethod · 0.45

Calls 2

typeFunction · 0.70
OKFunction · 0.50

Tested by

no test coverage detected