From 88b4994c65740d7e0f35cfff67edd1ede8f82d18 Mon Sep 17 00:00:00 2001 From: songenjie Date: Wed, 14 Apr 2021 17:49:06 +0800 Subject: [PATCH] fix some Suggestfix some Suggest --- website/blog/en/2016/how-to-update-data-in-clickhouse.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/blog/en/2016/how-to-update-data-in-clickhouse.md b/website/blog/en/2016/how-to-update-data-in-clickhouse.md index ed713db2aee..22c2fa3ccc1 100644 --- a/website/blog/en/2016/how-to-update-data-in-clickhouse.md +++ b/website/blog/en/2016/how-to-update-data-in-clickhouse.md @@ -67,7 +67,7 @@ There is a nice set of operations to work with partitions: - `DROP PARTITION` - Delete a partition. - `ATTACH PART|PARTITION` -- Add a new part or partition from the 'detached' directory to the table. - `FREEZE PARTITION` - Create a backup of a partition. -- `FETCH PARTITION|PART` - Download a part or partition from another server. +- `FETCH PARTITION` - Download a partition from another server. We can do any data management operations on partitions level: move, copy and delete. Also, special DETACH and ATTACH operations are created to simplify data manipulation. DETACH detaches partition from table, moving all data to detached directory. Data is still there and you can copy it anywhere but detached data is not visible on request level. ATTACH is the opposite: attaches data from detached directory so it become visible.