| 1334 | } |
| 1335 | |
| 1336 | shared_ptr<ArraySchema> ArraySchema::clone() const { |
| 1337 | return make_shared<ArraySchema>(HERE(), *this); |
| 1338 | } |
| 1339 | |
| 1340 | void ArraySchema::set_allows_dups(bool allows_dups) { |
| 1341 | if (allows_dups && array_type_ == ArrayType::DENSE) { |