From cf9878f77e5176296c107e3850f8a2c01e48c812 Mon Sep 17 00:00:00 2001 From: stack Date: Wed, 10 Aug 2016 17:53:13 -0700 Subject: [PATCH] HBASE-16363 Correct javadoc for qualifier length and value (Xiang Li) --- hbase-common/src/main/java/org/apache/hadoop/hbase/Cell.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/Cell.java b/hbase-common/src/main/java/org/apache/hadoop/hbase/Cell.java index 46ebeeb64a1..af937e48b00 100644 --- a/hbase-common/src/main/java/org/apache/hadoop/hbase/Cell.java +++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/Cell.java @@ -112,8 +112,7 @@ public interface Cell { //3) Qualifier /** - * Contiguous raw bytes that may start at any index in the containing array. Max length is - * Short.MAX_VALUE which is 32,767 bytes. + * Contiguous raw bytes that may start at any index in the containing array. * @return The array containing the qualifier bytes. */ byte[] getQualifierArray(); @@ -173,7 +172,7 @@ public interface Cell { /** * Contiguous raw bytes that may start at any index in the containing array. Max length is - * Integer.MAX_VALUE which is 2,147,483,648 bytes. + * Integer.MAX_VALUE which is 2,147,483,647 bytes. * @return The array containing the value bytes. */ byte[] getValueArray();