[
https://issues.apache.org/jira/browse/HBASE-13080?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Abhishek Kumar reassigned HBASE-13080:
--------------------------------------
Assignee: Abhishek Kumar
> 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
> Assignee: Abhishek Kumar
> Priority: Trivial
> Fix For: 2.0.0, 1.0.1, 1.1.0, 0.98.11
>
> Attachments: 0001-HBASE-13080-remove-extra-quote-typo-V2.patch,
> 0001-HBASE-13080-remove-extra-quote-typo.patch
>
>
> {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)