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

Method MakeChildField

cpp/src/arrow/c/bridge.cc:1399–1405  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1397 }
1398
1399 Result<std::shared_ptr<Field>> MakeChildField(int64_t child_id) {
1400 const auto& child = child_importers_[child_id];
1401 if (child.c_struct_->name == nullptr) {
1402 return Status::Invalid("Expected non-null name in imported array child");
1403 }
1404 return child.MakeField();
1405 }
1406
1407 Result<std::vector<std::shared_ptr<Field>>> MakeChildFields() {
1408 std::vector<std::shared_ptr<Field>> fields(child_importers_.size());

Callers

nothing calls this directly

Calls 2

InvalidFunction · 0.50
MakeFieldMethod · 0.45

Tested by

no test coverage detected