Create a query condition for vector 'IN' and 'NOT_IN' operations
Source:R/QueryCondition.R
tiledb_query_condition_create.Rd
Uses ‘IN’ and ‘NOT_IN’ operators on given attribute
Usage
tiledb_query_condition_create(
name,
values,
op = "IN",
ctx = tiledb_get_context()
)
Arguments
- name
A character value with the scheme attribute name
- values
A vector wiith the given values, supported types are integer, double, integer64 and charactor
- op
(optional) A character value with the chosen set operation, this must be one of ‘IN’ or ‘NOT_IN’; default to ‘IN’
- ctx
(optional) A TileDB Ctx object; if not supplied the default context object is retrieved