devinjdangelo commented on issue #1160:
URL: 
https://github.com/apache/arrow-datafusion/issues/1160#issuecomment-1986906627

   I am interested in working on this and #3770 as I have a use case for a 
capability to simplify deeply nested expressions. 
   
   E.g. 
   ```sql
   (((col - 10) + 10) *100) / 100 
   ```
   Simplifies to just
   ```sql
   col
   ```
   Also something like
   ```sql
   WHERE ((x<1 or y<2) and z<3) and false
   ```
   
   is just
   ```sql
   WHERE false
   ```
   
   Given the age of these discussions, I am wondering if any of the context or 
recommended approaches may have changed. @alamb any new thoughts on this?


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