* Sets the array config. * * @pre The array must be closed. */
| 545 | * @pre The array must be closed. |
| 546 | */ |
| 547 | void set_config(const Config& config) const { |
| 548 | auto& ctx = ctx_.get(); |
| 549 | ctx.handle_error(tiledb_array_set_config( |
| 550 | ctx.ptr().get(), array_.get(), config.ptr().get())); |
| 551 | } |
| 552 | |
| 553 | /** Retrieves the array config. */ |
| 554 | Config config() const { |
no test coverage detected