pitrou commented on PR #41700:
URL: https://github.com/apache/arrow/pull/41700#issuecomment-2230814917

   Ok, a first issue is that taking a chunked dictionary array crashes (are 
there no tests for this?):
   ```python
   >>> a1 = pa.array(["foo", "bar", "foo"]).dictionary_encode()
   >>> a2 = pa.array([None, "bar", "bar", "foo"]).dictionary_encode()
   >>> a = pa.chunked_array([a1, a2])
   >>> a.take([1,4])
   /home/antoine/arrow/dev/cpp/src/arrow/array/array_dict.cc:84:  Check failed: 
(data->dictionary) != (nullptr) 
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to