Should have HTable.deleteAll(String row) and HTable.deleteAll(Text row)
-----------------------------------------------------------------------
Key: HBASE-736
URL: https://issues.apache.org/jira/browse/HBASE-736
Project: Hadoop HBase
Issue Type: Improvement
Affects Versions: 0.2.0
Reporter: Sebastien Rainville
Priority: Trivial
We have this:
deleteAll(final byte [] row)
deleteAll(final byte [] row, final long ts)
deleteAll(final String row, final long ts)
deleteAll(final Text row, final long ts)
deleteAll(final byte [] row, final byte [] column)
deleteAll(final Text row, final Text column)
deleteAll(final String row, final String column)
deleteAll(final byte [] row, final byte [] column, final long ts)
deleteAll(final Text row, final Text column, final long ts)
deleteAll(final String row, final String column, final long ts)
So to be logical deleteAll(final Text row) and deleteAll(final String row) are
missing.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.