From d30d8eba39707bae6afda71526e7eba743e63ba6 Mon Sep 17 00:00:00 2001 From: Toshihiro Suzuki Date: Sun, 24 Mar 2019 00:56:10 +0900 Subject: [PATCH] HBASE-22097 Modify the description of split command in shell --- 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 c7a1e2938f..ede69873ae 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 -- 2.21.0