Nick Dimiduk created HBASE-8378:
-----------------------------------
Summary: add 'force' option for drop table
Key: HBASE-8378
URL: https://issues.apache.org/jira/browse/HBASE-8378
Project: HBase
Issue Type: Improvement
Components: shell, Usability
Reporter: Nick Dimiduk
Does this logic look familiar?
{noformat}
def drop_table(name):
if (!admin.table_exists?(name):
return
if (admin.enabled?(name)):
admin.disable_table(name)
admin.drop_table(name)
{noformat}
Let's add a force option to 'drop' that does exactly this. We'll save 6 lines
of code for thousands of developers in millions of scripts.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira