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

Method QueryCondition

tiledb/sm/cpp_api/query_condition.h:54–59  ·  view source on GitHub ↗

* Creates a TileDB query condition object. * @param ctx TileDB context. */

Source from the content-addressed store, hash-verified

52 * @param ctx TileDB context.
53 */
54 QueryCondition(const Context& ctx)
55 : ctx_(ctx) {
56 tiledb_query_condition_t* qc;
57 ctx.handle_error(tiledb_query_condition_alloc(ctx.ptr().get(), &qc));
58 query_condition_ = std::shared_ptr<tiledb_query_condition_t>(qc, deleter_);
59 }
60
61 /** Copy constructor. */
62 QueryCondition(const QueryCondition&) = default;

Callers

nothing calls this directly

Calls 4

handle_errorMethod · 0.80
getMethod · 0.45
ptrMethod · 0.45

Tested by

no test coverage detected