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

   ### Describe the bug, including details regarding any error messages, 
version, and platform.
   
   to reproduce (I've tested with pyarrow v17 and v19):
   ```python
   import pyarrow as pa
   
   a = pa.array([False, False, True, True])
   b = pa.array([False, True, False, True])
   print(a and b)
   print(a or b)
   ```
   
   The output is
   ```
   [
     false,
     true,
     false,
     true
   ]
   [
     false,
     false,
     true,
     true
   ]
   ```
   
   This seems hilarious to me... Is this intended or bug?
   
   ### Component(s)
   
   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