bbeaudreault commented on code in PR #5549:
URL: https://github.com/apache/hbase/pull/5549#discussion_r1412097064
##########
hbase-client/src/main/java/org/apache/hadoop/hbase/client/Admin.java:
##########
@@ -1535,7 +1535,16 @@ default void modifyTable(TableName tableName,
TableDescriptor td) throws IOExcep
throw new IllegalArgumentException("the specified table name '" +
tableName
+ "' doesn't match with the HTD one: " + td.getTableName());
}
- modifyTable(td);
+ modifyTable(td, true);
+ }
+
+ /**
+ * Modify an existing table, more IRB friendly version.
+ * @param td modified description of the table
Review Comment:
can you please add javadoc `@param reopenRegions` tag for this and below
overload?
--
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]