RussellSpitzer commented on a change in pull request #3059:
URL: https://github.com/apache/iceberg/pull/3059#discussion_r751677132
##########
File path: api/src/main/java/org/apache/iceberg/transforms/VoidTransform.java
##########
@@ -24,7 +24,7 @@
import org.apache.iceberg.expressions.UnboundPredicate;
import org.apache.iceberg.types.Type;
-class VoidTransform<S> implements Transform<S, Void> {
+public class VoidTransform<S> implements Transform<S, Void> {
Review comment:
Anton and I discussed maybe adding a `isVoid` method on Transform much
like we have `isIdentity`
```
/**
* Return whether this transform is the identity transform.
*
* @return true if this is an identity transform, false otherwise
*/
default boolean isIdentity() {
return false;
```
--
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]