vinayakphegde commented on code in PR #7090:
URL: https://github.com/apache/hbase/pull/7090#discussion_r2144559119
##########
hbase-backup/src/main/java/org/apache/hadoop/hbase/backup/impl/BackupSystemTable.java:
##########
@@ -1587,7 +1587,7 @@ private Delete createDeleteForIncrBackupTableSet(String
backupRoot) {
private Delete createDeleteForContinuousBackupTableSet(Set<TableName>
tables) {
Delete delete = new Delete(rowkey(CONTINUOUS_BACKUP_SET));
for (TableName tableName : tables) {
- delete.addColumns(META_FAMILY,
Bytes.toBytes(tableName.getNameAsString()));
+ delete.addColumn(META_FAMILY,
Bytes.toBytes(tableName.getNameAsString()));
Review Comment:
Actually, `addColumns` doesn't seem to delete the columns as expected, but
`addColumn` works correctly. This is probably related to how the two methods
handle cell versions internally.
--
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]