Repository: hbase
Updated Branches:
  refs/heads/master f2731fc24 -> 99221bd43


Revert "HBASE-18266 Create static empty byte array to save memory (Ben Epstein)"
Wrong JIRA number

This reverts commit e89baeaf93c36997296f84c600c4065b597365f5.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/10533118
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/10533118
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/10533118

Branch: refs/heads/master
Commit: 105331185c0ab34d327fa8e538ed619aeda82679
Parents: f2731fc
Author: Michael Stack <[email protected]>
Authored: Mon Jul 3 19:48:44 2017 -0700
Committer: Michael Stack <[email protected]>
Committed: Mon Jul 3 19:48:44 2017 -0700

----------------------------------------------------------------------
 .../src/main/java/org/apache/hadoop/hbase/client/Put.java        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/10533118/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Put.java
----------------------------------------------------------------------
diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Put.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Put.java
index 5c1528f..5c3ac4b 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Put.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Put.java
@@ -345,7 +345,7 @@ public class Put extends Mutation implements HeapSize, 
Comparable<Row> {
    * existing KeyValue object in the family map.
    */
   public boolean has(byte [] family, byte [] qualifier) {
-  return has(family, qualifier, this.ts, HConstants.EMPTY_BYTE_ARRAY, true, 
true);
+  return has(family, qualifier, this.ts, new byte[0], true, true);
   }
 
   /**
@@ -360,7 +360,7 @@ public class Put extends Mutation implements HeapSize, 
Comparable<Row> {
    * existing KeyValue object in the family map.
    */
   public boolean has(byte [] family, byte [] qualifier, long ts) {
-  return has(family, qualifier, ts, HConstants.EMPTY_BYTE_ARRAY, false, true);
+  return has(family, qualifier, ts, new byte[0], false, true);
   }
 
   /**

Reply via email to