Hello all, I have a quick question: Isn't there a method to delete a whole table in the HBase client? As I can see, a Delete object is only able to delete rows, families or columns:
Delete(byte[] row)
Create a Delete operation for the specified row.
Delete(byte[] row, long timestamp, RowLock rowLock)
Create a Delete operation for the specified row and timestamp, using
an optional row lock.
This is from the 0.91.0 API.
I need to delete a table. How do I do that?
Thanks.
