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/hbase-12439 Commit: b6e1f630743a7e09f319145e357242a56580f0d7 Parents: 47471c3 Author: Misty Stanley-Jones <[email protected]> Authored: Tue Mar 22 12:50:51 2016 -0700 Committer: Misty Stanley-Jones <[email protected]> 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) {
