We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
test_qc_enumeration
1 parent 7a22cc5 commit e1f57bdCopy full SHA for e1f57bd
tiledb/tests/test_query_condition.py
@@ -874,7 +874,7 @@ def test_boolean_dense(self):
874
875
def test_qc_enumeration(self):
876
uri = self.path("test_qc_enumeration")
877
- dom = tiledb.Domain(tiledb.Dim(domain=(1, 8), tile=1))
+ dom = tiledb.Domain(tiledb.Dim(domain=(1, 100), tile=1))
878
enum1 = tiledb.Enumeration("enmr1", True, [0, 1, 2])
879
enum2 = tiledb.Enumeration("enmr2", True, ["a", "bb", "ccc"])
880
attr1 = tiledb.Attr("attr1", dtype=np.int32, enum_label="enmr1")
@@ -884,8 +884,8 @@ def test_qc_enumeration(self):
884
)
885
tiledb.Array.create(uri, schema)
886
887
- data1 = np.random.randint(0, 3, 8)
888
- data2 = np.random.randint(0, 3, 8)
+ data1 = np.random.randint(0, 3, 100)
+ data2 = np.random.randint(0, 3, 100)
889
890
with tiledb.open(uri, "w") as A:
891
A[:] = {"attr1": data1, "attr2": data2}
0 commit comments