You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ap...@apache.org on 2014/05/23 22:55:40 UTC

[2/4] git commit: HBASE-11227 Mention 8- and 16-bit fixed-with encodings in OrderedBytes docstring (Nick Dimiduk)

HBASE-11227 Mention 8- and 16-bit fixed-with encodings in OrderedBytes docstring (Nick Dimiduk)


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

Branch: refs/heads/0.98
Commit: 2aed26ae6f9f3b7e961d0d92aebad41ecd2b200c
Parents: b985e4f
Author: Andrew Purtell <ap...@apache.org>
Authored: Fri May 23 13:49:57 2014 -0700
Committer: Andrew Purtell <ap...@apache.org>
Committed: Fri May 23 13:50:34 2014 -0700

----------------------------------------------------------------------
 .../src/main/java/org/apache/hadoop/hbase/util/OrderedBytes.java   | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/2aed26ae/hbase-common/src/main/java/org/apache/hadoop/hbase/util/OrderedBytes.java
----------------------------------------------------------------------
diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/OrderedBytes.java b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/OrderedBytes.java
index 20cf767..d8ee65e 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/OrderedBytes.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/OrderedBytes.java
@@ -56,6 +56,8 @@ import com.google.common.annotations.VisibleForTesting;
  * <tr><td>NaN</td><td>0x25</td></tr>
  * <tr><td>fixed-length 32-bit integer</td><td>0x27, I</td></tr>
  * <tr><td>fixed-length 64-bit integer</td><td>0x28, I</td></tr>
+ * <tr><td>fixed-length 8-bit integer</td><td>0x29</td></tr>
+ * <tr><td>fixed-length 16-bit integer</td><td>0x2a</td></tr>
  * <tr><td>fixed-length 32-bit float</td><td>0x30, F</td></tr>
  * <tr><td>fixed-length 64-bit float</td><td>0x31, F</td></tr>
  * <tr><td>TEXT</td><td>0x33, T</td></tr>