MCPcopy Create free account
hub / github.com/TileDB-Inc/TileDB / delete_array

Method delete_array

tiledb/sm/cpp_api/array.h:349–351  ·  view source on GitHub ↗

* 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. */

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 5

tiledb_array_deleteFunction · 0.85
handle_errorMethod · 0.80
c_strMethod · 0.80
getMethod · 0.45
ptrMethod · 0.45

Tested by

no test coverage detected