This is an automated email from the ASF dual-hosted git repository. lzljs3620320 pushed a commit to branch release-0.4 in repository https://gitbox.apache.org/repos/asf/incubator-paimon.git
commit 5c70511bb8e4cf11104505cd3cd9a9eebf926ec0 Author: GuojunLi <[email protected]> AuthorDate: Mon Apr 24 19:18:07 2023 +0800 [docs] Unify altering table docs (#1007) --- docs/content/how-to/altering-tables.md | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/docs/content/how-to/altering-tables.md b/docs/content/how-to/altering-tables.md index 774dd79df..7c130d240 100644 --- a/docs/content/how-to/altering-tables.md +++ b/docs/content/how-to/altering-tables.md @@ -161,19 +161,6 @@ ALTER TABLE my_table RENAME COLUMN c0 TO c1; {{< /tabs >}} ## Dropping Columns -The syntax is: - -{{< tabs "drop-columns-syntax" >}} - -{{< tab "Spark3" >}} - -```sql -ALTER TABLE table_identifier DROP { COLUMN | COLUMNS } [(] col_name [, ... ] [)] -``` - -{{< /tab >}} - -{{< /tabs >}} The following SQL drops tow columns `c1` and `c2` from table `my_table`.
