cpcloud opened a new issue, #44712: URL: https://github.com/apache/arrow/issues/44712
### Describe the bug, including details regarding any error messages, version, and platform. ``` In [52]: import pyarrow as pa In [53]: import numpy as np In [54]: pa.array(np.array([1]), pa.decimal128(38, 9)) ╭─────────────────────────────── Traceback (most recent call last) ────────────────────────────────╮ │ in <module>:1 │ │ │ │ in pyarrow.lib.array:360 │ │ │ │ in pyarrow.lib._ndarray_to_array:87 │ │ │ │ in pyarrow.lib.check_status:92 │ ╰──────────────────────────────────────────────────────────────────────────────────────────────────╯ ArrowInvalid: Got bytestring of length 8 (expected 16) In [55]: pa.array([1], pa.decimal128(38, 9)) Out[55]: <pyarrow.lib.Decimal128Array object at 0x7f0ccef07040> [ 1.000000000 ] ``` ### 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