Details
-
Improvement
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
None
-
None
-
None
-
Reviewed
Description
Currently semicolon is used to separate tables in BackupInfo.java :
public String getTableListAsString() { return StringUtils.join(backupStatusMap.keySet(), ";");
'hbase restore' accepts a comma-separated list of tables.
cartershanklin made the following request:
The semicolon should be changed to comma so that user can copy-paste the table list.