Skip to content

Commit

Permalink
DBZ-8268 Adjust formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
roldanbob committed Sep 25, 2024
1 parent b20e4b4 commit 74a4e39
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions documentation/modules/ROOT/pages/connectors/postgresql.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3248,20 +3248,18 @@ The connector runs the following SQL command to create a publication: +
`disabled`::
The connector does not attempt to create a publication.
A database administrator or the user configured to perform replications must have created the publication before running the connector.
If the connector cannot find the publication, the connector throws an exception and stops. +
+
If the connector cannot find the publication, the connector throws an exception and stops.

`filtered`::
If a publication does not exist, the connector creates one by running a SQL command in the following format: +
+
`CREATE PUBLICATION <__publication_name__> FOR TABLE <tbl1, tbl2, tbl3>`
+
+
The resulting publication includes tables that match the current filter configuration, as specified by the `schema.include.list`, `schema.exclude.list`, `table.include.list`, and `table.exclude.list` connector configuration properties.
+
+
If the publication exists, the connector updates the publication for tables that match the current filter configuration by running a SQL command in the following format: +
+
`ALTER PUBLICATION <publication_name> SET TABLE <tbl1, tbl2, tbl3>`. +
`ALTER PUBLICATION <publication_name> SET TABLE <tbl1, tbl2, tbl3>`.

`no_tables`::
If a publication exists, the connector uses it.
Expand Down

0 comments on commit 74a4e39

Please sign in to comment.