yihua commented on code in PR #19029:
URL: https://github.com/apache/hudi/pull/19029#discussion_r3425882407


##########
hudi-common/src/main/java/org/apache/hudi/internal/schema/action/TableChanges.java:
##########
@@ -47,13 +47,19 @@ public static class ColumnUpdateChange extends 
TableChange.BaseColumnChange {
 
     @Getter
     private final Map<Integer, Types.Field> updates = new HashMap<>();
+    private final boolean allowTimestampPrecisionEvolution;
 
     private ColumnUpdateChange(InternalSchema schema) {
-      super(schema, false);
+      this(schema, false, false);
     }
 
     private ColumnUpdateChange(InternalSchema schema, boolean caseSensitive) {
+      this(schema, caseSensitive, false);
+    }
+
+    private ColumnUpdateChange(InternalSchema schema, boolean caseSensitive, 
boolean allowTimestampPrecisionEvolution) {

Review Comment:
   Only kee



-- 
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]

Reply via email to