From 7cd1a0eef5187b0495f1621e642db2169c183f6f Mon Sep 17 00:00:00 2001 From: maoling Date: Sat, 24 Feb 2018 11:59:05 +0800 Subject: [PATCH] HBASE-20058:improper quoting in presplitting command docs --- src/main/asciidoc/_chapters/shell.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/asciidoc/_chapters/shell.adoc b/src/main/asciidoc/_chapters/shell.adoc index 1e51a20fce..522f482fc0 100644 --- a/src/main/asciidoc/_chapters/shell.adoc +++ b/src/main/asciidoc/_chapters/shell.adoc @@ -377,7 +377,7 @@ This will continue for all split points up to the last. The last region will be [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'). -- 2.14.1.windows.1