paleolimbot opened a new issue, #46856:
URL: https://github.com/apache/arrow/issues/46856

   ### Describe the enhancement requested
   
   As noted in 
https://github.com/duckdb/duckdb/discussions/17956#discussioncomment-13509631 , 
basic kernels like == aren't supported for binary views. I couldn't find a 
previous issue for this but perhaps there is one!
   
   ```python
   import pyarrow as pa
   from pyarrow import compute
   
   tab = pa.table({"x": pa.array([b"abc"], pa.binary_view())})
   
   compute.equal(tab["x"], tab["x"])
   #> ArrowNotImplementedError: Function 'equal' has no kernel matching input 
types (binary_view, binary_view)
   ```
   
   ### 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