From 29d579348d1442b9def77873b5e76e5516cc972e Mon Sep 17 00:00:00 2001 From: Aolin Date: Tue, 13 Aug 2024 16:01:21 +0800 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Grace Cai --- sql-statements/sql-statement-split-region.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql-statements/sql-statement-split-region.md b/sql-statements/sql-statement-split-region.md index d39be8e932858..176dd9cd962d4 100644 --- a/sql-statements/sql-statement-split-region.md +++ b/sql-statements/sql-statement-split-region.md @@ -411,7 +411,7 @@ You can specify the partition to be split. ## pre_split_regions -For tables with the `AUTO_RANDOM` or `SHARD_ROW_ID_BITS` attribute, it is recommended that you use `PRE_SPLIT_REGIONS` to evenly split the table into Regions during table creation. When a table is created successfully, `PRE_SPLIT_REGIONS` pre-spilts tables into the number of Regions as specified by `2^(PRE_SPLIT_REGIONS)`. +When creating a table with the `AUTO_RANDOM` or `SHARD_ROW_ID_BITS` attribute, you can also specify the `PRE_SPLIT_REGIONS` option if you want to evenly pre-split the table into Regions immediately after the table is created. The number of pre-split Regions for a table is `2^(PRE_SPLIT_REGIONS)`. > **Note:** >