You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by br...@apache.org on 2019/03/27 15:21:42 UTC

[hbase] branch branch-2.1 updated: HBASE-22097 Modify the description of split command in shell

This is an automated email from the ASF dual-hosted git repository.

brfrn169 pushed a commit to branch branch-2.1
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2.1 by this push:
     new 0ddd876  HBASE-22097 Modify the description of split command in shell
0ddd876 is described below

commit 0ddd876347262862ee9ce4c01532f2cedfae761f
Author: Toshihiro Suzuki <br...@gmail.com>
AuthorDate: Sun Mar 24 00:56:10 2019 +0900

    HBASE-22097 Modify the description of split command in shell
    
    Signed-off-by: Peter Somogyi <ps...@apache.org>
    Signed-off-by: Xu Cang <xu...@apache.org>
---
 hbase-shell/src/main/ruby/shell/commands/split.rb | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/hbase-shell/src/main/ruby/shell/commands/split.rb b/hbase-shell/src/main/ruby/shell/commands/split.rb
index c7a1e29..ede6987 100644
--- a/hbase-shell/src/main/ruby/shell/commands/split.rb
+++ b/hbase-shell/src/main/ruby/shell/commands/split.rb
@@ -25,11 +25,12 @@ module Shell
 Split entire table or pass a region to split individual region.  With the
 second parameter, you can specify an explicit split key for the region.
 Examples:
-    split 'tableName'
-    split 'namespace:tableName'
-    split 'regionName' # format: 'tableName,startKey,id'
-    split 'tableName', 'splitKey'
-    split 'regionName', 'splitKey'
+    split 'TABLENAME'
+    split 'REGIONNAME'
+    split 'ENCODED_REGIONNAME'
+    split 'TABLENAME', 'splitKey'
+    split 'REGIONNAME', 'splitKey'
+    split 'ENCODED_REGIONNAME', 'splitKey'
 EOF
       end