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

Method AddFields

cpp/src/arrow/type.cc:2623–2629  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2621}
2622
2623Status SchemaBuilder::AddFields(const FieldVector& fields) {
2624 for (const auto& field : fields) {
2625 RETURN_NOT_OK(AddField(field));
2626 }
2627
2628 return Status::OK();
2629}
2630
2631Status SchemaBuilder::AddSchema(const std::shared_ptr<Schema>& schema) {
2632 DCHECK_NE(schema, nullptr);

Callers 4

MergeStructsFunction · 0.80
TESTFunction · 0.80
from_arraysFunction · 0.80
makeMethod · 0.80

Calls 1

OKFunction · 0.70

Tested by 1

TESTFunction · 0.64