andygrove commented on issue #1434:
URL: 
https://github.com/apache/arrow-datafusion/issues/1434#issuecomment-1296307178

   I have seen other query engines introduce specialized versions of some 
expressions to handle this issue. For example, we could use something like this 
to represent many expressions connected with `or`.
   
   ```rust
   struct Or {
     expr: Vec[Expr]
   }
   ```
   
   We could maybe generalize to:
   
   ```rust
   struct ChainedExpr {
     op: Operator,
     expr: Vec[Expr]
   }
   ```


-- 
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]

Reply via email to