danielcweeks commented on code in PR #12211:
URL: https://github.com/apache/iceberg/pull/12211#discussion_r1950100200


##########
api/src/main/java/org/apache/iceberg/UpdateSchema.java:
##########
@@ -280,6 +410,30 @@ default UpdateSchema updateColumn(String name, 
Type.PrimitiveType newType, Strin
     return updateColumn(name, newType).updateColumnDoc(name, newDoc);
   }
 
+  /**
+   * Update a column in the schema to a new primitive type.
+   *
+   * <p>The name is used to find the column to update using {@link 
Schema#findField(String)}.
+   *
+   * <p>Only updates that widen types are allowed.
+   *
+   * <p>Columns may be updated and renamed in the same schema update.
+   *
+   * @param name name of the column to rename
+   * @param newType replacement type for the column
+   * @param newDoc replacement documentation string for the column
+   * @return this for method chaining

Review Comment:
   Missing Jdoc for `newDefaultValue`



-- 
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: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to