DROP TABLE table_name [IF bool_expr]
Drops named table (requires disabling the table first).
HConnection conn = HConnectionManager.newConnection();
conn.execute("DROP TABLE foo");
// Or using the API
conn.dropTable("foo");