Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
kounelisagis committed Feb 17, 2025
1 parent 3bafb00 commit 107fe82
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tiledb/tests/test_multi_index-hp.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,12 @@ def test_multi_index_two_way_query(self, order, ranges, sparse_array_1d):
r1 = A.query(order=order).multi_index[ranges]["a"]
r2 = _direct_query_ranges(A, [ranges], order)["a"]

print("r1", r1[:])
print("r2", r2[:])
print("ranges", ranges)
print("order", order)
print("uri", uri)

assert_array_equal(r1, r2)
except tiledb.TileDBError as exc:
if is_boundserror(exc):
Expand Down

0 comments on commit 107fe82

Please sign in to comment.