Dandandan opened a new issue, #22272: URL: https://github.com/apache/datafusion/issues/22272
Split out from #22247. ### Mismatch `power(0.0::float8, -1.0::float8)` should error, not return infinity. ```sql SELECT power(0.0::float8, -1.0::float8); ``` PostgreSQL: ```text ERROR: zero raised to a negative power is undefined ``` DataFusion: ```text inf ``` ### Expected behavior For PostgreSQL-compatible SQL semantics, DataFusion should either match PostgreSQL's result or raise the same class of domain/semantic error. -- 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]
