* Deletes all data written to the array with the input uri. * * @param ctx TileDB context * @param uri The Array's URI * * @post This is destructive; the array may not be reopened after delete. */
| 347 | * @post This is destructive; the array may not be reopened after delete. |
| 348 | */ |
| 349 | static void delete_array(const Context& ctx, const std::string& uri) { |
| 350 | ctx.handle_error(tiledb_array_delete(ctx.ptr().get(), uri.c_str())); |
| 351 | } |
| 352 | |
| 353 | /** |
| 354 | * Deletes the fragments written between the input timestamps of an array |
nothing calls this directly
no test coverage detected