Skip to content

Commit 202331f

Browse files
authored
Merge pull request #4161 from ClickHouse/Blargian-patch-73
2 parents aa77754 + fe2d190 commit 202331f

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

docs/managing-data/updating-data/overview.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ In summary, update operations should be issued carefully, and the mutations queu
2525
| [On-the-fly updates](/guides/developer/on-the-fly-mutations) | `ALTER TABLE [table] UPDATE` | Enable using `SET apply_mutations_on_fly = 1;`. Use when updating small amounts of data. Rows are immediately returned with updated data in all subsequent `SELECT` queries but are initially only internally marked as updated on disk. |
2626
| [ReplacingMergeTree](/engines/table-engines/mergetree-family/replacingmergetree) | `ENGINE = ReplacingMergeTree` | Use when updating large amounts of data. This table engine is optimized for data deduplication on merges. |
2727
| [CollapsingMergeTree](/engines/table-engines/mergetree-family/collapsingmergetree) | `ENGINE = CollapsingMergeTree(Sign)` | Use when updating individual rows frequently, or for scenarios where you need to maintain the latest state of objects that change over time. For example, tracking user activity or article stats. |
28-
Here is a summary of the different ways to update data in ClickHouse:
2928

3029
## Update mutations {#update-mutations}
3130

0 commit comments

Comments
 (0)