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

   ### Describe the bug, including details regarding any error messages, 
version, and platform.
   
   ```
   Python 3.11.5 (main, Sep 19 2023, 13:23:14) [Clang 14.0.3 
(clang-1403.0.22.14.1)] on darwin
   Type "help", "copyright", "credits" or "license" for more information.
   >>> import pyarrow as pa
   >>> import pyarrow.compute as pc
   >>> a = pa.array([0, 1, 0], type=pa.uint32())
   >>> a
   <pyarrow.lib.UInt32Array object at 0x12d332510>
   [
     0,
     1,
     0
   ]
   
   >>> pc.pairwise_diff(a)
   <pyarrow.lib.UInt32Array object at 0x12d3324a0>
   [
     null,
     1,
     4294967295
   ]
   >>> pa.__version__
   '13.0.0'
   ```
   
   I would have expected the result to be a signed 32 (or 64?) bit array.
   
   ### 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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to