From 3271969060db63f1584ef1738f004f7d4c11d8db Mon Sep 17 00:00:00 2001 From: Wenting Zhan Date: Thu, 12 Sep 2024 20:34:21 -0700 Subject: [PATCH] docs: Update replication.mdx (replciated -> replicated) (#1617) Signed-off-by: Wenting Zhan --- docs/deploy/replication.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/deploy/replication.mdx b/docs/deploy/replication.mdx index 72adf0ac24..8fac5145f4 100644 --- a/docs/deploy/replication.mdx +++ b/docs/deploy/replication.mdx @@ -198,7 +198,7 @@ The data inserted on the Publisher server should appear on the Subscriber server ## Schema Changes in Logical Replication -ParadeDB leverages PostgreSQL’s built-in logical replication to provide flexible and efficient data synchronization, and is subject to the same limitations. A well-known caveat of logical replication is that schema changes (DDL commands) are not replciated. This means that any changes to the schema on the source database, such as adding new columns or tables, will not be automatically applied to the subscriber. +ParadeDB leverages PostgreSQL’s built-in logical replication to provide flexible and efficient data synchronization, and is subject to the same limitations. A well-known caveat of logical replication is that schema changes (DDL commands) are not replicated. This means that any changes to the schema on the source database, such as adding new columns or tables, will not be automatically applied to the subscriber. ```sql -- On Publisher