alamb commented on issue #410: URL: https://github.com/apache/arrow-datafusion/issues/410#issuecomment-847318273
Sure -- sounds great @jgoday I think the transformation is valid for predicates connected by `AND` at any "depth" so like I would hope the transformation would work for both the following: ``` (c > 5) AND (c > 5) --> (c > 5) ((c > 5) AND (d < 6)) AND (c > 5) --> (c > 5) AND (d < 6) ``` -- 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. For queries about this service, please contact Infrastructure at: [email protected]
