randolf-scholz opened a new issue, #44660:
URL: https://github.com/apache/arrow/issues/44660

   ### Describe the enhancement requested
   
   ```python
   import pyarrow as pa
   
   array = pa.array(["foo", "bar", None], type=pa.string()).dictionary_encode()
   mask = pa.array([True, False, False], type=pa.bool_())
   value = pa.scalar("baz", type=pa.string())
   pa.compute.replace_with_mask(array, mask, value)
   ```
   
   > Function 'replace_with_mask' has no kernel matching input types 
(dictionary<values=string, indices=int32, ordered=0>, bool, string)
   
   
   ### Component(s)
   
   C++, Python


-- 
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: issues-unsubscr...@arrow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to