You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by bu...@apache.org on 2019/05/28 17:20:49 UTC

[hbase] branch branch-2.0 updated: HBASE-22148 Provide a LimitedPrivate(COPROC) API for setting Cell timestamp without copying.

This is an automated email from the ASF dual-hosted git repository.

busbey pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2.0 by this push:
     new 1a46d8d  HBASE-22148 Provide a LimitedPrivate(COPROC) API for setting Cell timestamp without copying.
1a46d8d is described below

commit 1a46d8d259dd886be5c38bbb7aed00b109b79b85
Author: Sean Busbey <bu...@apache.org>
AuthorDate: Tue May 14 22:09:42 2019 -0500

    HBASE-22148 Provide a LimitedPrivate(COPROC) API for setting Cell timestamp without copying.
    
    Signed-off-by: Josh Elser <el...@apache.org>
    (cherry picked from commit 16f18d5c2d0a9f838a663a11a746199fad3892e4)
---
 hbase-common/src/main/java/org/apache/hadoop/hbase/CellUtil.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/CellUtil.java b/hbase-common/src/main/java/org/apache/hadoop/hbase/CellUtil.java
index c33517b..5774714 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/CellUtil.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/CellUtil.java
@@ -1181,7 +1181,7 @@ public final class CellUtil {
    * @param cell
    * @param ts
    * @throws IOException when the passed cell is not of type {@link ExtendedCell}
-   * @deprecated As of HBase-2.0. Will be removed in HBase-3.0
+   * @deprecated As of HBase-2.0. Will be a LimitedPrivate API in HBase-3.0.
    */
   @Deprecated
   public static void setTimestamp(Cell cell, long ts) throws IOException {
@@ -1194,7 +1194,7 @@ public final class CellUtil {
    * @param ts buffer containing the timestamp value
    * @param tsOffset offset to the new timestamp
    * @throws IOException when the passed cell is not of type {@link ExtendedCell}
-   * @deprecated As of HBase-2.0. Will be removed in HBase-3.0
+   * @deprecated As of HBase-2.0. Will be a LimitedPrivate API in HBase-3.0.
    */
   @Deprecated
   public static void setTimestamp(Cell cell, byte[] ts, int tsOffset) throws IOException {