cloud-fan commented on PR #46757: URL: https://github.com/apache/spark/pull/46757#issuecomment-2135688283
`!a + b <=> !(a + b)` looks fine as arithmetic operators won't produce boolean values so this doesn't matter. The important thing is `! a > b` is `! (a > b)` which Spark does it right. If there is a safe way to make `! a + b` to `(!a) + b` without breaking anything else, I'm fine. -- 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]
