From 48a2fe68adf7d4ffbd6c43de1cfc2b6836cd14bb Mon Sep 17 00:00:00 2001 From: superche <73096722+hechao-ustc@users.noreply.github.com> Date: Sat, 11 Mar 2023 09:10:48 +0800 Subject: [PATCH] [typo](docs) Fix some display errors (#17663) * [fix](docs) fix some errors in docs --- docs/en/docs/data-table/data-partition.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/en/docs/data-table/data-partition.md b/docs/en/docs/data-table/data-partition.md index 71e5845d04..b4e243b2f6 100644 --- a/docs/en/docs/data-table/data-partition.md +++ b/docs/en/docs/data-table/data-partition.md @@ -305,6 +305,12 @@ Range partitioning also supports batch partitioning. For example, you can create PARTITION BY LIST(`id`, `city`) ( PARTITION `p1_city` VALUES IN (("1", "Beijing"), ("1", "Shanghai")), + PARTITION `p2_city` VALUES IN (("2", "Beijing"), ("2", "Shanghai")), + PARTITION `p3_city` VALUES IN (("3", "Beijing"), ("3", "Shanghai")) + ) + ``` + + In the above example, we specify `id` (INT type) and `city` (VARCHAR type) as the partitioning columns, so the resulting partitions will be as follows: ``` * p1_city: [("1", "Beijing"), ("1", "Shanghai")]