HBASE-20058 improper quoting in presplitting command docs

Signed-off-by: Chia-Ping Tsai <chia7712@gmail.com>
This commit is contained in:
maoling 2018-02-24 11:59:05 +08:00 committed by Chia-Ping Tsai
parent e8ee5c060d
commit ec8aaeded8
1 changed files with 1 additions and 1 deletions

View File

@ -377,7 +377,7 @@ This will continue for all split points up to the last. The last region will be
[source] [source]
---- ----
hbase>create 't1','f',SPLITS => ['10','20',30'] hbase>create 't1','f',SPLITS => ['10','20','30']
---- ----
In the above example, the table 't1' will be created with column family 'f', pre-split to four regions. Note the first region will contain all keys from '\x00' up to '\x30' (as '\x31' is the ASCII code for '1'). In the above example, the table 't1' will be created with column family 'f', pre-split to four regions. Note the first region will contain all keys from '\x00' up to '\x30' (as '\x31' is the ASCII code for '1').