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

[GitHub] [arrow-datafusion] stuartcarnie commented on issue #6072: DataFusion produces incorrect results with certain filter expressions

stuartcarnie commented on issue #6072:
URL: https://github.com/apache/arrow-datafusion/issues/6072#issuecomment-1516419215

   This isn't a bug, as its the correct precedence:
   
   ```
   (true or true and cpu = 'cpu0')
   ```
   
   is the same
   
   ```
   (true or (true and cpu = 'cpu0'))
   ```


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