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