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.
Would Decimal(32, 32) only support 0.000000* to 0.999999*?
Also, would more precision be required to support Int128 and Int256? The maximum values for these are 39 and 78 digits long respectively (although it seems PyArrow only supports 38 and 76 for some reason).
Analogous to apache/arrow-rs#1785.
Currently, Arrow2 Decimal and Decimal256 have scale typed as
usize
, which would not support negative scale.As a driveby, precision is also currently typed as
usize
but could probably be typed asu8
. It seems the max value for precision on pyarrow is 76.The text was updated successfully, but these errors were encountered: