voonhous commented on code in PR #17630:
URL: https://github.com/apache/hudi/pull/17630#discussion_r2629307665
##########
hudi-common/src/main/java/org/apache/hudi/expression/Literal.java:
##########
@@ -80,22 +85,9 @@ public static <V> Literal from(V value) {
+ value.getClass().getName() + " to Literal");
}
+ @Getter
Review Comment:
Good catch! Missed this
##########
hudi-common/src/main/java/org/apache/hudi/expression/BinaryExpression.java:
##########
@@ -18,36 +18,23 @@
package org.apache.hudi.expression;
+import lombok.AllArgsConstructor;
+import lombok.Getter;
+
import java.util.Arrays;
import java.util.List;
/**
* The expression that accept two child expressions.
*/
+@AllArgsConstructor
Review Comment:
Yes!
--
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]