You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tiledb/query_condition.py
+72-21Lines changed: 72 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -23,18 +23,20 @@ class QueryCondition:
23
23
Class representing a TileDB query condition object for attribute filtering
24
24
pushdown.
25
25
26
+
A query condition is set with a string representing an expression
27
+
as defined by the grammar below. A more straight forward example of usage is
28
+
given beneath.
29
+
26
30
When querying a sparse array, only the values that satisfy the given
27
31
condition are returned (coupled with their associated coordinates). An example
28
32
may be found in `examples/query_condition_sparse.py`.
29
33
30
34
For dense arrays, the given shape of the query matches the shape of the output
31
35
array. Values that DO NOT satisfy the given condition are filled with the
32
36
TileDB default fill value. Different attribute types have different default
33
-
fill values as outlined here (https://docs.tiledb.com/main/background/internal-mechanics/writing#default-fill-values). An example may be found in `examples/query_condition_dense.py`.
34
-
35
-
Set the query condition with a string representing an expression
36
-
as defined by the grammar below. A more straight forward example of usage is
0 commit comments