Skip to content

Commit 295f539

Browse files
committed
adjustments for branch-2
1 parent 19643c3 commit 295f539

File tree

2 files changed

+2
-139
lines changed

2 files changed

+2
-139
lines changed

hbase-backup/src/main/java/org/apache/hadoop/hbase/backup/impl/BulkLoad.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,10 @@ public boolean equals(Object o) {
6969
if (this == o) {
7070
return true;
7171
}
72-
if (!(o instanceof BulkLoad that)) {
72+
if (!(o instanceof BulkLoad)) {
7373
return false;
7474
}
75+
BulkLoad that = (BulkLoad) o;
7576
return new EqualsBuilder().append(tableName, that.tableName).append(region, that.region)
7677
.append(columnFamily, that.columnFamily).append(hfilePath, that.hfilePath)
7778
.append(rowKey, that.rowKey).isEquals();

hbase-backup/src/test/java/org/apache/hadoop/hbase/backup/TestIncrementalBackupWithBulkLoad.java

Lines changed: 0 additions & 138 deletions
This file was deleted.

0 commit comments

Comments
 (0)