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

Method BuildArray

cpp/src/parquet/arrow/reader.cc:566–572  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

564 }
565
566 Status BuildArray(int64_t length_upper_bound,
567 std::shared_ptr<ChunkedArray>* out) override {
568 std::shared_ptr<ChunkedArray> storage;
569 RETURN_NOT_OK(storage_reader_->BuildArray(length_upper_bound, &storage));
570 *out = ExtensionType::WrapArray(field_->type(), storage);
571 return Status::OK();
572 }
573
574 bool IsOrHasRepeatedChild() const final {
575 return storage_reader_->IsOrHasRepeatedChild();

Callers

nothing calls this directly

Calls 3

OKFunction · 0.50
BuildArrayMethod · 0.45
typeMethod · 0.45

Tested by

no test coverage detected