nguyenv

Results 51 comments of nguyenv

``` ______________ IncompleteTest.test_incomplete_dense_varlen[False] ______________ self = non_overlapping_ranges = False @pytest.mark.parametrize("non_overlapping_ranges", [True, False]) def test_incomplete_dense_varlen(self, non_overlapping_ranges): ncells = 10 path = self.path("incomplete_dense_varlen") str_data = [rand_utf8(random.randint(0, n)) for n in range(ncells)] data...

The difference is the null terminator at the end (plus the mismatched dtypes ofc).

There seems to be an issue when the buffer *begins* with an empty string. Will continue to investigate. Will also further note that the number of empty chars at the...

One thing I am unsure about with the delete API design as I have it is you need to use `__getitem__` in order to actually submit the query: ``` with...

> One thing I am unsure about with the delete API design as I have it is you need to use `__getitem__` in order to actually submit the query: >...

We have resolved the original problem that prompted this PR. However, this branch still contains several features that may be important for usability such as consistent presentation of ASCII as...

Closing as query conditions on dimensions are not supported for dense arrays.

Oh that's a good point. We should support it for attributes. I'll reopen the PR.

https://github.com/TileDB-Inc/TileDB-Py/actions/runs/3705060553/jobs/6278471958#step:14:1729

Hi Bruce, To consolidate group metadata please use `tiledb.Group.consolidate_metadata`. Example is [here](https://github.com/TileDB-Inc/TileDB-Py/blob/dev/tiledb/tests/test_group.py#L589-L590). Thanks.