@@ -2278,22 +2278,16 @@ def test_sparse_mixed_domain_uint_float64(self, fx_sparse_cell_order):
2278
2278
],
2279
2279
)
2280
2280
def test_sparse_string_domain (
2281
- self , coords , expected_ned , allows_duplicates , sparse_cell_order
2281
+ self , coords , expected_ned , allows_duplicates , fx_sparse_cell_order
2282
2282
):
2283
- # if sparse_cell_order in ("hilbert", "row-major", "col-major") and allows_duplicates == True:
2284
- # if tiledb.libtiledb.version() < (2, 8):
2285
- # pytest.xfail(
2286
- # "Skipping known bug with legacy reader and empty strings"
2287
- # )
2288
-
2289
2283
path = self .path ("sparse_string_domain" )
2290
2284
dom = tiledb .Domain (tiledb .Dim (name = "d" , domain = (None , None ), dtype = np .bytes_ ))
2291
2285
att = tiledb .Attr (name = "a" , dtype = np .int64 )
2292
2286
schema = tiledb .ArraySchema (
2293
2287
domain = dom ,
2294
2288
attrs = (att ,),
2295
2289
sparse = True ,
2296
- cell_order = sparse_cell_order ,
2290
+ cell_order = fx_sparse_cell_order ,
2297
2291
allows_duplicates = allows_duplicates ,
2298
2292
capacity = 10000 ,
2299
2293
)
@@ -2302,30 +2296,29 @@ def test_sparse_string_domain(
2302
2296
data = [1 , 2 , 3 , 4 ][: len (coords )]
2303
2297
2304
2298
with tiledb .open (path , "w" ) as A :
2305
- breakpoint ()
2306
2299
A [coords ] = data
2307
2300
2308
2301
with tiledb .open (path ) as A :
2309
2302
ned = A .nonempty_domain ()[0 ]
2310
- self . assertEqual (A .nonempty_domain (), ((tuple (expected_ned )),))
2303
+ assert_array_equal (A .nonempty_domain (), ((tuple (expected_ned )),))
2311
2304
2312
2305
if not (
2313
- sparse_cell_order in ("hilbert" , "row-major" , "col-major" )
2306
+ fx_sparse_cell_order in ("hilbert" , "row-major" , "col-major" )
2314
2307
and allows_duplicates == True
2315
2308
):
2316
2309
assert_array_equal (A [ned [0 ] : ned [1 ]]["a" ], data )
2317
2310
self .assertEqual (set (A [ned [0 ] : ned [1 ]]["d" ]), set (coords ))
2318
2311
2319
- if allows_duplicates and sparse_cell_order != "hilbert" :
2320
- res_u1 = A .query (order = "U" ).multi_index [ned [0 ] : ned [1 ]]
2312
+ if allows_duplicates and fx_sparse_cell_order != "hilbert" :
2313
+ res_u1 = A .query ().multi_index [ned [0 ] : ned [1 ]]
2321
2314
assert_array_equal (res_u1 ["a" ], data )
2322
2315
self .assertEqual (set (res_u1 ["d" ]), set (coords ))
2323
2316
2324
- res_u2 = A .query (order = "U" )[ned [0 ] : ned [1 ]]
2317
+ res_u2 = A .query ()[ned [0 ] : ned [1 ]]
2325
2318
assert_array_equal (res_u2 ["a" ], data )
2326
2319
self .assertEqual (set (res_u2 ["d" ]), set (coords ))
2327
2320
2328
- def test_sparse_string_domain2 (self , sparse_cell_order ):
2321
+ def test_sparse_string_domain2 (self , fx_sparse_cell_order ):
2329
2322
path = self .path ("sparse_string_domain2" )
2330
2323
with self .assertRaises (ValueError ):
2331
2324
dims = [
0 commit comments