Skip to content

BUG: Unsafe decimal parse for arrow types silently truncates value instead of raising an error #56984

Closed
@rohanjain101

Description

@rohanjain101

Pandas version checks

  • I have checked that this issue has not already been reported.

  • I have confirmed this bug exists on the latest version of pandas.

  • I have confirmed this bug exists on the main branch of pandas.

Reproducible Example

>>> ser = pd.Series(["1.2345"], dtype=pd.ArrowDtype(pa.string()))
>>> ser.astype(pd.ArrowDtype(pa.decimal128(1, 0)))
0    1
dtype: decimal128(1, 0)[pyarrow]
>>>

Issue Description

The value is silently truncated, instead of raising an error that the decimal cannot be safely rescaled. This example would raise this error in pandas 2.1.4:

>>> ser = pd.Series(["1.2345"], dtype=pd.ArrowDtype(pa.string()))
>>> ser.astype(pd.ArrowDtype(pa.decimal128(1, 0)))
pyarrow.lib.ArrowInvalid: Rescaling Decimal128 value would cause data loss
>>> pd.__version__
'2.1.4'
>>>

For decimal most usages values accuracy, and silently truncating the value does not seem desirable, also if the original series was a decimal, then this error would be raised:

>>> ser = pd.Series(["1.2345"], dtype=pd.ArrowDtype(pa.decimal128(5, 4)))
>>> ser.astype(pd.ArrowDtype(pa.decimal128(1,0)))
pyarrow.lib.ArrowInvalid: Rescaling Decimal128 value would cause data loss
>>>

So it seems unusual when casting a decimal from a string, the value is silently truncated during rescale, but when casting it from another decimal, then there's no truncation during the rescale operation and an error is raised.

Expected Behavior

>>> ser = pd.Series(["1.2345"], dtype=pd.ArrowDtype(pa.string()))
>>> ser.astype(pd.ArrowDtype(pa.decimal128(1, 0)))
pyarrow.lib.ArrowInvalid: Rescaling Decimal128 value would cause data loss

This was the behavior in pandas 2.1.4.

Installed Versions

INSTALLED VERSIONS

commit : f538741
python : 3.11.7.final.0
python-bits : 64
OS : Windows
OS-release : 10
Version : 10.0.22631
machine : AMD64
processor : Intel64 Family 6 Model 151 Stepping 2, GenuineIntel
byteorder : little
LC_ALL : None
LANG : None
LOCALE : English_United States.1252

pandas : 2.2.0
numpy : 1.26.2
pytz : 2023.3.post1
dateutil : 2.8.2
setuptools : 68.2.2
pip : 23.3.1
Cython : None
pytest : None
hypothesis : None
sphinx : 4.2.0
blosc : None
feather : None
xlsxwriter : None
lxml.etree : None
html5lib : None
pymysql : None
psycopg2 : None
jinja2 : 3.1.2
IPython : 8.17.2
pandas_datareader : None
adbc-driver-postgresql: None
adbc-driver-sqlite : None
bs4 : 4.12.2
bottleneck : None
dataframe-api-compat : None
fastparquet : None
fsspec : None
gcsfs : None
matplotlib : None
numba : None
numexpr : None
odfpy : None
openpyxl : None
pandas_gbq : None
pyarrow : 14.0.0
pyreadstat : None
python-calamine : None
pyxlsb : None
s3fs : None
scipy : None
sqlalchemy : None
tables : None
tabulate : 0.9.0
xarray : None
xlrd : None
zstandard : None
tzdata : 2023.3
qtpy : None
pyqt5 : None

Metadata

Metadata

Assignees

No one assigned

    Labels

    Arrowpyarrow functionalityBugDtype ConversionsUnexpected or buggy dtype conversionsNeeds TriageIssue that has not been reviewed by a pandas team memberRegressionFunctionality that used to work in a prior pandas version

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions