You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by mi...@apache.org on 2016/03/22 20:56:47 UTC

hbase git commit: HBASE-15447 Improve javadocs description for Delete methods [Forced Update!]

Repository: hbase
Updated Branches:
  refs/heads/master e5a31de00 -> b6e1f6307 (forced update)


HBASE-15447 Improve javadocs description for Delete methods <Wellington Chevreuil>


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

Branch: refs/heads/master
Commit: b6e1f630743a7e09f319145e357242a56580f0d7
Parents: 47471c3
Author: Misty Stanley-Jones <ms...@cloudera.com>
Authored: Tue Mar 22 12:50:51 2016 -0700
Committer: Misty Stanley-Jones <ms...@cloudera.com>
Committed: Tue Mar 22 12:56:30 2016 -0700

----------------------------------------------------------------------
 .../src/main/java/org/apache/hadoop/hbase/client/Delete.java     | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/b6e1f630/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Delete.java
----------------------------------------------------------------------
diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Delete.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Delete.java
index 1e4f79f..c886b34 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Delete.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Delete.java
@@ -76,7 +76,9 @@ public class Delete extends Mutation implements Comparable<Row> {
    * <p>
    * If no further operations are done, this will delete everything
    * associated with the specified row (all versions of all columns in all
-   * families).
+   * families), with timestamp from current point in time to the past.
+   * Cells defining timestamp for a future point in time
+   * (timestamp > current time) will not be deleted.
    * @param row row key
    */
   public Delete(byte [] row) {