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

Method BuildArray

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

Source from the content-addressed store, hash-verified

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