| 287 | } |
| 288 | |
| 289 | shared_ptr<const Enumeration> ArraySchemaEvolution::enumeration_to_add( |
| 290 | const std::string& name) const { |
| 291 | std::lock_guard<std::mutex> lock(mtx_); |
| 292 | auto it = enumerations_to_add_map_.find(name); |
| 293 | |
| 294 | if (it == enumerations_to_add_map_.end()) { |
| 295 | return nullptr; |
| 296 | } |
| 297 | |
| 298 | return it->second; |
| 299 | } |
| 300 | |
| 301 | void ArraySchemaEvolution::extend_enumeration( |
| 302 | shared_ptr<const Enumeration> enmr) { |
no test coverage detected