770120041 commented on code in PR #15550:
URL: https://github.com/apache/iceberg/pull/15550#discussion_r2905878229
##########
api/src/main/java/org/apache/iceberg/transforms/Identity.java:
##########
@@ -141,11 +142,19 @@ public boolean satisfiesOrderOf(Transform<?, ?> other) {
@Override
public UnboundPredicate<T> project(String name, BoundPredicate<T> predicate)
{
+ if (predicate.term() instanceof BoundTransform) {
+ return ProjectionUtil.projectTransformPredicate(this, name, predicate);
+ }
Review Comment:
Thanks for the review @huaxingao ! yes I think it was not needed and just
removed in the next revision, thanks!
--
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]