Submits and finalizes the last tile of a global order write. For remote TileDB arrays, this is optimized to use only one request to perform both the submit and finalize. */
| 344 | the submit and finalize. |
| 345 | */ |
| 346 | void submit_and_finalize() { |
| 347 | auto& ctx = ctx_.get(); |
| 348 | ctx.handle_error( |
| 349 | tiledb_query_submit_and_finalize(ctx.ptr().get(), query_.get())); |
| 350 | } |
| 351 | |
| 352 | /** |
| 353 | * Returns the number of elements in the result buffers from a read query. |
no test coverage detected