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:
parent
7a1c407ea6
commit
7b4646fe3d
|
@ -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 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 byte [] row = null;
|
||||||
protected long ts = HConstants.LATEST_TIMESTAMP;
|
protected long ts = HConstants.LATEST_TIMESTAMP;
|
||||||
|
|
Loading…
Reference in New Issue