feniljain commented on issue #2547:
URL: https://github.com/apache/datafusion/issues/2547#issuecomment-3656841987
I tried out some queries to make sense of it, like:
```sql
salary > ALL (SELECT salary FROM employees WHERE department = 'HR')
```
is equivalent to:
```sql
NOT (
salary <= ANY (SELECT salary FROM employees WHERE department = 'HR')
)
```
And yes it makes sense, we can definitely replace ALL with ANY + NOT +
inverse operator. I see other issue is already being worked by @darshanime,
maybe I will unassign myself here? If anything else is needed, would be glad to
jump back in :)
--
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]