From a016e8fcd1dc15097336213e4c691677da23bc6b Mon Sep 17 00:00:00 2001 From: rfraposa Date: Wed, 5 Apr 2023 11:30:59 -0600 Subject: [PATCH] Update replication.md --- .../table-engines/mergetree-family/replication.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/docs/en/engines/table-engines/mergetree-family/replication.md b/docs/en/engines/table-engines/mergetree-family/replication.md index e9ca87916a0..e14ba5699e4 100644 --- a/docs/en/engines/table-engines/mergetree-family/replication.md +++ b/docs/en/engines/table-engines/mergetree-family/replication.md @@ -8,11 +8,18 @@ sidebar_label: Data Replication :::note In ClickHouse Cloud replication is managed for you. Please create your tables without adding arguments. For example, in the text below you would replace: + +```sql +ENGINE = ReplicatedReplacingMergeTree( + '/clickhouse/tables/{shard}/table_name', + '{replica}', + ver +) ``` -ENGINE = ReplicatedReplacingMergeTree('/clickhouse/tables/{shard}/table_name', '{replica}', ver) -``` + with: -``` + +```sql ENGINE = ReplicatedReplacingMergeTree ``` :::