Its a bug. deleteall wasn't hooked up properly. Should be fixed now
(See HBASE-702).
St.Ack
acure wrote:
Hi
Hbase 0.2.0 dev - fresh from trunk
Example :
I have a table x with column : 'col'.
i put somevalue into column 'col' for row 'aaa':
HTable table = new HTable("x");
BatchUpdate batch = new BatchUpdate("aaa");
batch.put("col:", "somevalue".getBytes());
table.commit(batch);
i deleteAll - full denial remove 'aaa'
table.deleteAll("aaa".getBytes());
but on shell i see that this row still exists.
when i use deleteAll(row, column) - it's ok and value is removed.
Thanks - Antony