| 2634 | } |
| 2635 | |
| 2636 | Status SchemaBuilder::AddSchemas(const std::vector<std::shared_ptr<Schema>>& schemas) { |
| 2637 | for (const auto& schema : schemas) { |
| 2638 | RETURN_NOT_OK(AddSchema(schema)); |
| 2639 | } |
| 2640 | |
| 2641 | return Status::OK(); |
| 2642 | } |
| 2643 | |
| 2644 | Status SchemaBuilder::AddMetadata(const KeyValueMetadata& metadata) { |
| 2645 | impl_->metadata_ = |