| 1675 | } |
| 1676 | |
| 1677 | void ArraySchema::set_current_domain(shared_ptr<CurrentDomain> current_domain) { |
| 1678 | if (current_domain == nullptr) { |
| 1679 | throw ArraySchemaException( |
| 1680 | "The argument specified for setting the current domain on the " |
| 1681 | "schema is nullptr."); |
| 1682 | } |
| 1683 | current_domain_ = current_domain; |
| 1684 | } |
| 1685 | |
| 1686 | } // namespace tiledb::sm |
| 1687 |
no test coverage detected