kkraus14 opened a new issue, #38444:
URL: https://github.com/apache/arrow/issues/38444
### Describe the bug, including details regarding any error messages,
version, and platform.
Repro:
```
import pyarrow as pa
import numpy as np
int32_max = np.iinfo('int32').max
int32_min = np.iinfo('int32').min
print(pa.scalar(int32_max, pa.date32())) # Throws
print(pa.scalar(int32_min, pa.data32())) # Throws
print(pa.array([int32_min, int32_max], pa.date32())) # has error message in
repr but doesn't throw, output below
```
```
[
<value out of range: -2147483648>,
<value out of range: 2147483647>
]
```
### 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]