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 <41534398+TomShawn@users.noreply.github.com>
  • Loading branch information
Liuxiaozhen12 and TomShawn authored Sep 3, 2021
1 parent dd272bf commit b878f40
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 @@ -573,7 +573,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 @@ -583,7 +583,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 b878f40

Please sign in to comment.