HBASE-15285 ADDENDUM make RETURN_RESULTS attribute name protected to match branch-1.1 and deprecated to warn of 2.0 (Sean Busbey)

This commit is contained in:
Jonathan M Hsieh 2016-02-18 07:17:10 -08:00
parent 7a1c407ea6
commit 7b4646fe3d
1 changed files with 5 additions and 1 deletions

View File

@ -83,7 +83,11 @@ public abstract class Mutation extends OperationWithAttributes implements Row, C
*/
private static final String OP_ATTRIBUTE_TTL = "_ttl";
private static final String RETURN_RESULTS = "_rr_";
/**
* @deprecated this field is private as of HBase 2.0.
*/
@Deprecated
protected static final String RETURN_RESULTS = "_rr_";
protected byte [] row = null;
protected long ts = HConstants.LATEST_TIMESTAMP;