HADOOP-2176 Htable.deleteAll documentation is ambiguous
git-svn-id: https://svn.apache.org/repos/asf/lucene/hadoop/trunk/src/contrib/hbase@593708 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
26b3d9442d
commit
33ab394d4a
|
@ -38,6 +38,7 @@ Trunk (unreleased changes)
|
|||
HADOOP-2088 Make hbase runnable in $HADOOP_HOME/build(/contrib/hbase)
|
||||
HADOOP-2126 Use Bob Jenkins' hash for bloom filters
|
||||
HADOOP-2157 Make Scanners implement Iterable
|
||||
HADOOP-2176 Htable.deleteAll documentation is ambiguous
|
||||
|
||||
Release 0.15.1
|
||||
Branch 0.15
|
||||
|
|
|
@ -630,8 +630,7 @@ public class HTable implements HConstants {
|
|||
}
|
||||
|
||||
/**
|
||||
* Delete all values for a column
|
||||
*
|
||||
* Delete all cells that match the passed row and column.
|
||||
* @param row Row to update
|
||||
* @param column name of column whose value is to be deleted
|
||||
* @throws IOException
|
||||
|
@ -641,8 +640,8 @@ public class HTable implements HConstants {
|
|||
}
|
||||
|
||||
/**
|
||||
* Delete all values for a column
|
||||
*
|
||||
* Delete all cells that match the passed row and column and whose
|
||||
* timestamp is equal-to or older than the passed timestamp.
|
||||
* @param row Row to update
|
||||
* @param column name of column whose value is to be deleted
|
||||
* @param ts Delete all cells of the same timestamp or older.
|
||||
|
@ -978,4 +977,4 @@ public class HTable implements HConstants {
|
|||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue