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

Method query_status

tiledb/sm/cpp_api/query.h:286–292  ·  view source on GitHub ↗

Returns the query status. */

Source from the content-addressed store, hash-verified

284
285 /** Returns the query status. */
286 Status query_status() const {
287 tiledb_query_status_t status;
288 auto& ctx = ctx_.get();
289 ctx.handle_error(
290 tiledb_query_get_status(ctx.ptr().get(), query_.get(), &status));
291 return to_status(status);
292 }
293
294 /**
295 * Returns `true` if the query has results. Applicable only to read

Calls 4

tiledb_query_get_statusFunction · 0.85
handle_errorMethod · 0.80
getMethod · 0.45
ptrMethod · 0.45

Tested by 7

write_by_indexMethod · 0.64
write_by_index_varMethod · 0.64
write_by_labelMethod · 0.64
write_by_label_varMethod · 0.64
read_and_check_valuesMethod · 0.64
test_for_column_sizeFunction · 0.64