paleolimbot commented on PR #44882: URL: https://github.com/apache/arrow/pull/44882#issuecomment-2508689739
Current battles (so I remember them Monday!): I'm missing some member definition for the use-facing type classes: ```python import pyarrow as pa pa.decimal128(2, 0).precision #> 2 pa.decimal256(2, 0).precision #> 2 pa.decimal32(2, 0).precision #> AttributeError: 'pyarrow.lib.Decimal32Type' object has no attribute 'precision' ``` There's no cast implemented from "float" to "decimal32/64", which at least some of the tests depend on: ``` pyarrow.lib.ArrowNotImplementedError: Unsupported cast to decimal32(7, -8) from float ``` -- 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]
