Skip to content

Commit

Permalink
Merge branch 'docs-remove-for-all-tables' of https://github.com/neond…
Browse files Browse the repository at this point in the history
…atabase/website into docs-remove-for-all-tables
  • Loading branch information
danieltprice committed Feb 10, 2025
2 parents 091a6fd + 1f06a7b commit 980a78d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion content/docs/guides/logical-replication-estuary-flow.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Create a [publication](https://www.postgresql.org/docs/current/sql-createpublica
CREATE PUBLICATION estuary_publication FOR TABLE <tbl1, tbl2, tbl3>;
```

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.

Expand Down
2 changes: 1 addition & 1 deletion content/docs/guides/sequin.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
```

Expand Down

0 comments on commit 980a78d

Please sign in to comment.