| 335 | } |
| 336 | |
| 337 | std::shared_ptr<Field> Field::WithNullable(const bool nullable) const { |
| 338 | return std::make_shared<Field>(name_, type_, nullable, metadata_); |
| 339 | } |
| 340 | |
| 341 | Field::MergeOptions Field::MergeOptions::Permissive() { |
| 342 | MergeOptions options = Defaults(); |