dhirschfeld opened a new issue, #43252: URL: https://github.com/apache/arrow/issues/43252
### Describe the bug, including details regarding any error messages, version, and platform. ### MCVE ```python >>> import pyarrow as pa >>> import pyarrow.compute >>> import numpy as np >>> pi = pa.compute.cast(np.pi, pa.decimal128(38, 10)) >>> e = pa.compute.cast(np.e, pa.decimal128(38, 10)) >>> pa.compute.multiply(pi, e) --------------------------------------------------------------------------- ArrowInvalid Traceback (most recent call last) 3 pi = pa.compute.cast(np.pi, pa.decimal128(38, 10)) 4 e = pa.compute.cast(np.e, pa.decimal128(38, 10)) ----> 5 pa.compute.multiply(pi, e) File /opt/python/envs/dev310/lib/python3.10/site-packages/pyarrow/compute.py:246, in _make_generic_wrapper.<locals>.wrapper(memory_pool, *args) 244 if args and isinstance(args[0], Expression): 245 return Expression._call(func_name, list(args)) --> 246 return func.call(args, None, memory_pool) File /opt/python/envs/dev310/lib/python3.10/site-packages/pyarrow/_compute.pyx:385, in pyarrow._compute.Function.call() File /opt/python/envs/dev310/lib/python3.10/site-packages/pyarrow/error.pxi:154, in pyarrow.lib.pyarrow_internal_check_status() File /opt/python/envs/dev310/lib/python3.10/site-packages/pyarrow/error.pxi:91, in pyarrow.lib.check_status() ArrowInvalid: Decimal precision out of range [1, 38]: 77 ``` ``` python: 3.10.14 pyarrow: 14.0.2 platform: linux-64 (ubuntu) ``` ### 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