neilconway opened a new issue, #22510: URL: https://github.com/apache/datafusion/issues/22510
### Describe the bug `power` with a decimal base and negative integer exponent truncates the result incorrectly. ### To Reproduce ``` DataFusion CLI v53.1.0 > select power(CAST(2 AS DECIMAL(10,0)), -3); +---------------------------+ | power(Int64(2),Int64(-3)) | +---------------------------+ | 0 | +---------------------------+ 1 row(s) fetched. Elapsed 0.110 seconds. ``` ### Expected behavior This query should return `0.125`, which is what Postgres and DuckDB do. ### Additional context _No response_ -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
