hadrian-reppas opened a new issue, #46944:
URL: https://github.com/apache/arrow/issues/46944

   ### Describe the bug, including details regarding any error messages, 
version, and platform.
   
   ```python
   import pyarrow as pa
   import pyarrow.compute as pc
   
   true_true = pa.array([True, True])
   false_true = pa.chunked_array([
       [False],
       pa.array([True, True]).slice(1),
   ])
   
   pc.and_(true_true, false_true)
   ```
   produces
   ```
   [
     [
       true,
       true
     ]
   ]
   ```
   which is not correct. The output should be
   ```
   [
     [
       false,
       true
     ]
   ]
   ```
   I am using version 19.0.0
   
   ### 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