* Closes the array. The destructor calls this automatically * if the underlying pointer is owned. * * **Example:** * @code{.cpp} * tiledb::Array array(ctx, "s3://bucket-name/array-name", TILEDB_READ); * array.close(); * @endcode */
| 570 | * @endcode |
| 571 | */ |
| 572 | void close() { |
| 573 | auto& ctx = ctx_.get(); |
| 574 | ctx.handle_error(tiledb_array_close(ctx.ptr().get(), array_.get())); |
| 575 | } |
| 576 | |
| 577 | /** |
| 578 | * @brief Consolidates the fragments of an array into a single fragment. |
nothing calls this directly
no test coverage detected