theirix opened a new issue, #18031: URL: https://github.com/apache/datafusion/issues/18031
### Is your feature request related to a problem or challenge? Math functions in [datafusion-functions](https://github.com/apache/datafusion/blob/main/datafusion/functions/src/math/mod.rs) do not support Decimal128, Decimal256 directly, always casting the input to floats. There is merged support for `log` function in #17140. This case is simpler since the function has exactly two arguments (log has one or two). ### Describe the solution you'd like Implement type cases for decimals using a generic `calculate_binary_math` macro. ### Describe alternatives you've considered _No response_ ### 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]
