HBASE-19122 Suspect methods on Cell to be deprecated; ADDENDUM to fix

compile error
This commit is contained in:
Michael Stack 2017-12-18 16:02:54 -08:00
parent abae90787f
commit 6a9b1480c1
2 changed files with 2 additions and 1 deletions

View File

@ -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());
}

View File

@ -199,6 +199,7 @@ public class KeyOnlyFilter extends FilterBase {
return cell.getType();
}
@Override
public long getSequenceId() {
return 0;