You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2013/08/11 04:58:23 UTC

svn commit: r1512858 - /hbase/trunk/hbase-server/src/main/ruby/shell.rb

Author: stack
Date: Sun Aug 11 02:58:23 2013
New Revision: 1512858

URL: http://svn.apache.org/r1512858
Log:
HBASE-9130 Invert the name of namespace commands to match the snapshots and replication form

Modified:
    hbase/trunk/hbase-server/src/main/ruby/shell.rb

Modified: hbase/trunk/hbase-server/src/main/ruby/shell.rb
URL: http://svn.apache.org/viewvc/hbase/trunk/hbase-server/src/main/ruby/shell.rb?rev=1512858&r1=1512857&r2=1512858&view=diff
==============================================================================
--- hbase/trunk/hbase-server/src/main/ruby/shell.rb (original)
+++ hbase/trunk/hbase-server/src/main/ruby/shell.rb Sun Aug 11 02:58:23 2013
@@ -257,12 +257,12 @@ Shell.load_command_group(
   'namespace',
   :full_name => 'NAMESPACE MANAGEMENT COMMANDS',
   :commands => %w[
-    namespace_create
-    namespace_drop
-    namespace_alter
-    namespace_describe
-    namespace_list
-    namespace_list_tables
+    create_namespace
+    drop_namespace
+    alter_namespace
+    describe_namespace
+    list_namespace
+    list_namespace_tables
   ]
 )