HBASE-19122 Suspect methods on Cell to be deprecated; ADDENDUM to fix
compile error
This commit is contained in:
parent
abae90787f
commit
6a9b1480c1
|
@ -1592,7 +1592,7 @@ public class MetaTableAccessor {
|
|||
.setFamily(HConstants.CATALOG_FAMILY)
|
||||
.setQualifier(getRegionStateColumn())
|
||||
.setTimestamp(put.getTimeStamp())
|
||||
.setType(CellBuilder.DataType.Put)
|
||||
.setType(DataType.Put)
|
||||
.setValue(Bytes.toBytes(state.name()))
|
||||
.build());
|
||||
}
|
||||
|
|
|
@ -199,6 +199,7 @@ public class KeyOnlyFilter extends FilterBase {
|
|||
return cell.getType();
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public long getSequenceId() {
|
||||
return 0;
|
||||
|
|
Loading…
Reference in New Issue