[typo](docs) Fix some display errors (#17663)

* [fix](docs) fix some errors in docs
This commit is contained in:
superche
2023-03-11 09:10:48 +08:00
committed by GitHub
parent 3745e6c18a
commit 48a2fe68ad

View File

@ -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")]