Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

partitioning: Corrected partition management #5498

Merged
merged 8 commits into from
Jul 23, 2021
Prev Previous commit
Next Next commit
partitioning: fixed linting/line breaks.
mjonss authored and TomShawn committed Jul 23, 2021
commit 25c846810e3d9050f6870b4130f6c119dffe25c2
4 changes: 3 additions & 1 deletion partitioned-table.md
Original file line number Diff line number Diff line change
@@ -579,8 +579,10 @@ You can see that the inserted record `(NULL, 'mothra')` falls into the same part
## Partition management

For `LIST` and `RANGE` partitioned tables, you can add and drop partitions with `ALTER TABLE <table name> ADD PARTITION (<partition specification>)` / `ALTER TABLE <table name> DROP PARTITION <list of partitions>`
For `LIST` and `RANGE` partitioned tables, you can add and drop partitions with `ALTER TABLE <table name> ADD PARTITION (<partition specification>)` / `ALTER TABLE <table name> DROP PARTITION <list of partitions>`.

For `HASH` partitioned tables, `COALESCE PARTITION` and `ADD PARTITION` is not yet supported.

`REORGANIZE PARTITION` is not yet supported.

> **Warning**