You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "izveigor (via GitHub)" <gi...@apache.org> on 2023/06/08 19:14:11 UTC

[GitHub] [arrow-datafusion] izveigor opened a new issue, #6602: Implement `AnyOp` and `AllOp` operators

izveigor opened a new issue, #6602:
URL: https://github.com/apache/arrow-datafusion/issues/6602

   ### Is your feature request related to a problem or challenge?
   
   Follow on to https://github.com/apache/arrow-datafusion/issues/6119
   
   It would be really nice to implement SQL `Any` and `All` operators in `arrow-datafusion`. These two operators have a wide scope.
   
   
   ### Describe the solution you'd like
   
   `sqlparser-rs` supports `AnyOp` and `AllOp` operators (See https://docs.rs/sqlparser/latest/sqlparser/ast/enum.Expr.html). 
   
   ### Describe alternatives you've considered
   
   _No response_
   
   ### Additional context
   
   https://docs.rs/sqlparser/latest/sqlparser/ast/enum.Expr.html#variant.AnyOp
   https://docs.rs/sqlparser/latest/sqlparser/ast/enum.Expr.html#variant.AllOp
   


-- 
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: github-unsubscribe@arrow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow-datafusion] BubbaJoe commented on issue #6602: Implement `AnyOp` and `AllOp` operators

Posted by "BubbaJoe (via GitHub)" <gi...@apache.org>.
BubbaJoe commented on issue #6602:
URL: https://github.com/apache/arrow-datafusion/issues/6602#issuecomment-1583926955

   I just want to confirm the functionality, I can do something like foo > all(1); to check if all values are greater than 1. Or foo != any(6); to ensure no values in the array are equal to 6. Does this seem accurate? 


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org