You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.
When I read a parquet file that contains a negative value of type Decimal, underflow occurs.
How to repro:
Change int64 input here
https://github.com/jorgecarleitao/arrow2/blob/main/parquet_integration/write_parquet.py#L52
from
int64 = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
->int64 = [-1, 0, 1, 2, 3, 4, 5, 6, 7, 8]
Output:
I'm working on a fix.
The text was updated successfully, but these errors were encountered: