* Flushes all internal state of a query object and finalizes the query. * This is applicable only to global layout writes. It has no effect for * any other query type. */
| 334 | * any other query type. |
| 335 | */ |
| 336 | void finalize() { |
| 337 | auto& ctx = ctx_.get(); |
| 338 | ctx.handle_error(tiledb_query_finalize(ctx.ptr().get(), query_.get())); |
| 339 | } |
| 340 | |
| 341 | /** |
| 342 | Submits and finalizes the last tile of a global order write. For remote |
no test coverage detected