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
Use Arrow Type Fixed-Width Binary ("w:") For Fixed-Width TILEDB_CHAR (#1286)
* Previously, this errored out with `ArrowInvalid: Expected 3 buffers
for imported type large_binary, ArrowArray struct has 2`
* Fixed-width `TILEDB_CHAR` was using type large binary ("Z") which
requires 3 buffers, including an offset buffer, that is not present
or necessary for fixed-width binary strings
* This does not handle fixed-width `TILEDB_UTF8` or `TILEDB_ASCII`
Copy file name to clipboardExpand all lines: HISTORY.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,8 @@
1
1
# In Progress
2
2
3
3
## Bug Fixes
4
-
* Fix issue where querying an array with a Boolean type when `arrow=True`, but is unselected in `.query(attr=...)`, results in an error `pyarrow.lib.ArrowInvalid: Invalid column index to set field.`[]()
4
+
* Fix issue where querying an array with a Boolean type when `arrow=True`, but is unselected in `.query(attr=...)`, results in an error `pyarrow.lib.ArrowInvalid: Invalid column index to set field.`[#1291](https://github.com/TileDB-Inc/TileDB-Py/pull/1291)
5
+
* Use Arrow type fixed-width binary ("w:") for non-variable TILEDB_CHAR [#1286](https://github.com/TileDB-Inc/TileDB-Py/pull/1286)
0 commit comments