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

Method ExportChildren

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

Source from the content-addressed store, hash-verified

278 }
279
280 Status ExportChildren(const std::vector<std::shared_ptr<Field>>& fields) {
281 export_.children_.resize(fields.size());
282 child_exporters_.resize(fields.size());
283 for (size_t i = 0; i < fields.size(); ++i) {
284 RETURN_NOT_OK(child_exporters_[i].ExportField(*fields[i]));
285 }
286 return Status::OK();
287 }
288
289 Status ExportMetadata(const KeyValueMetadata* orig_metadata) {
290 static const KeyValueMetadata empty_metadata;

Callers

nothing calls this directly

Calls 4

resizeMethod · 0.80
ExportFieldMethod · 0.80
OKFunction · 0.50
sizeMethod · 0.45

Tested by

no test coverage detected