Abhishek Kumar created HBASE-13080:
--------------------------------------
Summary: Hbase shell message containing extra quote at the end of
error message.
Key: HBASE-13080
URL: https://issues.apache.org/jira/browse/HBASE-13080
Project: HBase
Issue Type: Improvement
Reporter: Abhishek Kumar
Priority: Trivial
{noformat}
hbase(main):001:0> drop 't2'
ERROR: Table t2 is enabled. Disable it first.*'*
---------------------------
hbase(main):001:0> disable 'noTable'
ERROR: Table csadfsdfsdf does not exist.*'*
{noformat}
extra quote at the end odf error message seems to be a typo, can be removed
from below two methods in admin.rb :
{noformat}
# Throw exception if table doesn't exist
def tableExists(table_name)
raise ArgumentError, "Table #{table_name} does not exist.'" unless
exists?(table_name)
end
========================
# Drops a table
def drop(table_name)
tableExists(table_name)
raise ArgumentError, "Table #{table_name} is enabled. Disable it first.'"
if enabled?(table_name)
{noformat}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)