Details
-
New Feature
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
Description
pa.array(["some", "string"], type=pa.dictionary(pa.int8(), pa.string)))
raises
ArrowNotImplementedError: Sequence converter for type dictionary<values=string, indices=int8, ordered=0> not implemented
It would be a much more comfortable way than
pa.DictionaryArray.from_arrays(indices, dictionary)
And possibly more efficient as well thanks to the adaptive dictionary builders.
Attachments
Issue Links
- is fixed by
-
ARROW-9992 [C++][Python] Refactor python to arrow conversions based on a reusable conversion API
- Resolved