mbostock commented on issue #37920: URL: https://github.com/apache/arrow/issues/37920#issuecomment-2014140867
We just ran into this using DuckDB-Wasm. Here’s a simple query that demonstrates the problem: ```sql SELECT 11111111100::INT128 AS n ``` This returns a DecimalBigNum consisting of ```js [2521176508, 2, 0, 0] ``` And likewise string coercion returns the expected `"11111111100"`, but number coercion gives `4.460189873590169e+44`. -- 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]
