From 1f06a7bcd4db8b38ffee0269329bbcc4af667b6c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 10 Feb 2025 21:06:22 +0000 Subject: [PATCH] chore: format content markdown files with Prettier --- content/docs/guides/logical-replication-estuary-flow.md | 2 +- content/docs/guides/sequin.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/docs/guides/logical-replication-estuary-flow.md b/content/docs/guides/logical-replication-estuary-flow.md index 1ec13fe50d..baa178052e 100644 --- a/content/docs/guides/logical-replication-estuary-flow.md +++ b/content/docs/guides/logical-replication-estuary-flow.md @@ -111,7 +111,7 @@ Create a [publication](https://www.postgresql.org/docs/current/sql-createpublica CREATE PUBLICATION estuary_publication FOR TABLE ; ``` -Refer to the [Postgres docs](https://www.postgresql.org/docs/current/sql-alterpublication.html) if you need to add or remove tables from your publication. +Refer to the [Postgres docs](https://www.postgresql.org/docs/current/sql-alterpublication.html) if you need to add or remove tables from your publication. Upon startup, the Estuary Flow connector for Postgres will automatically create the [replication slot](https://www.postgresql.org/docs/current/logicaldecoding-explanation.html#LOGICALDECODING-REPLICATION-SLOTS) required for ingesting data change events from Postgres. The slot's name will be prefixed with `estuary_`, followed by a unique identifier. diff --git a/content/docs/guides/sequin.md b/content/docs/guides/sequin.md index a3272a3d56..1c4adc0f48 100644 --- a/content/docs/guides/sequin.md +++ b/content/docs/guides/sequin.md @@ -66,7 +66,7 @@ After enabling logical replication on Neon, you'll now connect your Neon databas 4. Create a publication to indicate which tables will publish changes to the replication slot. Run the following SQL command: - ```sql + ```sql CREATE PUBLICATION sequin_pub FOR TABLE table1, table2, table3; ```