* Deletes the fragments with the input uris on an array with the input uri. */
| 373 | * Deletes the fragments with the input uris on an array with the input uri. |
| 374 | */ |
| 375 | static void delete_fragments_list( |
| 376 | const Context& ctx, |
| 377 | const std::string& uri, |
| 378 | const char* fragment_uris[], |
| 379 | const size_t num_fragments) { |
| 380 | ctx.handle_error(tiledb_array_delete_fragments_list( |
| 381 | ctx.ptr().get(), uri.c_str(), fragment_uris, num_fragments)); |
| 382 | } |
| 383 | |
| 384 | /** |
| 385 | * @brief Opens the array. The array is opened using a query type as input. |
no test coverage detected