aokolnychyi opened a new pull request #3600:
URL: https://github.com/apache/iceberg/pull/3600
This is an alternative solution to #3584.
There are two cases that we could not handle with the old approach (suppose
the table is bucketed by data):
```
Expression partPredicate = Expressions.equal(Expressions.bucket("data", 16),
0);
Expression rowPredicate = Expressions.greaterThan("id", 5);
Expression predicate = Expressions.and(partPredicate, rowPredicate);
```
```
Expression partPredicate = Expressions.equal("data", "aaaa");
Expression rowPredicate = Expressions.greaterThan("id", 5);
Expression predicate = Expressions.and(partPredicate, rowPredicate);
```
--
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]