tmnd1991 opened a new issue, #9191: URL: https://github.com/apache/iceberg/issues/9191
### Apache Iceberg version main (development) ### Query engine Spark ### Please describe the bug 🐞 The following query: ``` SELECT * FROM %s WHERE system.bucket(5, id) IN (0,1) ``` is not pushed down by iceberg while the following: ``` SELECT * FROM %s WHERE system.bucket(5, id) = 0 or system.bucket(5, id) = 1 ``` ``` SELECT * FROM %s WHERE system.bucket(5, id) IN (0) or system.bucket(5, id) IN (1) ``` ``` SELECT * FROM %s WHERE system.bucket(5, id) <= 1 ``` are correctly pushed. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
