From de5ed997ba80a579efcedf0edae64066ec872d42 Mon Sep 17 00:00:00 2001 From: ana-uvarova Date: Sun, 8 Nov 2020 17:55:26 +0300 Subject: [PATCH] Draft. --- .../sql-reference/statements/alter/column.md | 3 +++ docs/en/sql-reference/statements/alter/ttl.md | 25 +++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/docs/en/sql-reference/statements/alter/column.md b/docs/en/sql-reference/statements/alter/column.md index 69aa086c069..b5f27d1b71e 100644 --- a/docs/en/sql-reference/statements/alter/column.md +++ b/docs/en/sql-reference/statements/alter/column.md @@ -122,6 +122,9 @@ Example: ALTER TABLE visits MODIFY COLUMN browser Array(String) ``` +## ALTER TABLE MODIFY COLUMN col_name REMOVE what_to_remove +Здесь будет описание для задачи 3122. + Changing the column type is the only complex action – it changes the contents of files with data. For large tables, this may take a long time. There are several processing stages: diff --git a/docs/en/sql-reference/statements/alter/ttl.md b/docs/en/sql-reference/statements/alter/ttl.md index 05040e38ccf..ae73d9b20b6 100644 --- a/docs/en/sql-reference/statements/alter/ttl.md +++ b/docs/en/sql-reference/statements/alter/ttl.md @@ -10,3 +10,28 @@ You can change [table TTL](../../../engines/table-engines/mergetree-family/merge ``` sql ALTER TABLE table-name MODIFY TTL ttl-expression ``` + +# ALTER TABLE REMOVE TTL + +Brief description of what the statement does. + +Syntax: + +```sql +Syntax of the statement. +``` + +## Other necessary sections of the description (Optional) + +Examples of descriptions with a complicated structure: + +- https://clickhouse.tech/docs/en/sql-reference/statements/grant/ +- https://clickhouse.tech/docs/en/sql-reference/statements/revoke/ +- https://clickhouse.tech/docs/en/sql-reference/statements/select/join/ + + +## See Also (Optional) + +Links to related topics as a list. + +- [link](#)