Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: TomShawn <[email protected]>
  • Loading branch information
2 people authored and ti-chi-bot committed Sep 6, 2021
1 parent 2e8c0b6 commit 38cd03c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions partitioned-table.md
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ Empty set (0.00 sec)
## 分区管理

对于 `LIST``RANGE` 分区表,通过 `ALTER TABLE <表名> ADD PARTITION (<分区说明>)``ALTER TABLE <表名> DROP PARTITION <分区列>` 语句,可以执行添加和删除分区的操作。
对于 `LIST``RANGE` 分区表,通过 `ALTER TABLE <表名> ADD PARTITION (<分区说明>)``ALTER TABLE <表名> DROP PARTITION <分区列表>` 语句,可以执行添加和删除分区的操作。

对于 `LIST``RANGE` 分区表,暂不支持 `REORGANIZE PARTITION` 语句。

Expand All @@ -582,7 +582,7 @@ Empty set (0.00 sec)

例如,`ALTER TABLE partitioned_table EXCHANGE PARTITION p1 WITH TABLE non_partitioned_table` 交换的是 `p1` 分区的 `non_partitioned_table` 表和 `partitioned_table` 表。

确保要交换分区中的所有行与分区定义匹配;否则,你将无法找到这些行,并导致意外情况出现。
确保要交换入分区中的所有行与分区定义匹配;否则,你将无法找到这些行,并导致意外情况出现。

> **警告:**
>
Expand Down

0 comments on commit 38cd03c

Please sign in to comment.