randolf-scholz commented on issue #34890:
URL: https://github.com/apache/arrow/issues/34890#issuecomment-1496312953

   Using chunked arrays, `array.dictionary_encode()` breaks as well:
   
   ```python
   import pyarrow as pa
   
   dict_array = pa.chunked_array([["banana", "orange"], ["orange", 
"apple"]]).dictionary_encode()
   dict_array.dictionary_encode()  # ✘
   pa.compute.dictionary_encode(dict_array)  # ✘
   ```
   
   


-- 
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