HBASE-18266 Create static empty byte array to save memory (Ben Epstein)
This commit is contained in:
parent
262e6bb3fa
commit
3b28f66bf3
|
@ -346,7 +346,7 @@ public class Put extends Mutation implements HeapSize, Comparable<Row> {
|
||||||
* existing KeyValue object in the family map.
|
* existing KeyValue object in the family map.
|
||||||
*/
|
*/
|
||||||
public boolean has(byte [] family, byte [] qualifier) {
|
public boolean has(byte [] family, byte [] qualifier) {
|
||||||
return has(family, qualifier, this.ts, new byte[0], true, true);
|
return has(family, qualifier, this.ts, HConstants.EMPTY_BYTE_ARRAY, true, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -361,7 +361,7 @@ public class Put extends Mutation implements HeapSize, Comparable<Row> {
|
||||||
* existing KeyValue object in the family map.
|
* existing KeyValue object in the family map.
|
||||||
*/
|
*/
|
||||||
public boolean has(byte [] family, byte [] qualifier, long ts) {
|
public boolean has(byte [] family, byte [] qualifier, long ts) {
|
||||||
return has(family, qualifier, ts, new byte[0], false, true);
|
return has(family, qualifier, ts, HConstants.EMPTY_BYTE_ARRAY, false, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue