gyang94 commented on code in PR #1509:
URL: https://github.com/apache/fluss/pull/1509#discussion_r2266866036
##########
fluss-client/src/main/java/com/alibaba/fluss/client/admin/Admin.java:
##########
@@ -234,6 +234,23 @@ CompletableFuture<Void> createTable(
*/
CompletableFuture<List<String>> listTables(String databaseName);
+ /**
+ * Alter a table.
+ *
+ * <p>The following exceptions can be anticipated when calling {@code
get()} on returned future.
+ *
+ * <ul>
+ * <li>{@link DatabaseNotExistException} if the database does not exist.
+ * </ul>
+ *
+ * @param tablePath The table path of the table.
+ * @param tableDescriptor The table descriptor.
+ * @param ignoreIfNotExists if it is true, do nothing if table does not
exist. If false, throw a
+ * TableNotExistException.
+ */
+ CompletableFuture<Void> alterTable(
Review Comment:
added in `FlussAdminITCase.testAlterTable`
--
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]