Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document PG CDC parameter check #669

Merged
merged 2 commits into from
Apr 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/guides/ingest-from-postgres-cdc.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ export const svg = rr.Diagram(

#### WITH parameters

All the fields listed below are required.
Unless specified otherwise, the fields listed are required.

|Field|Notes|
|---|---|
Expand All @@ -247,9 +247,9 @@ export const svg = rr.Diagram(
|username| Username of the database.|
|password| Password of the database. |
|database.name| Name of the database.|
|schema.name| Name of the schema. |
|schema.name| Optional. Name of the schema. By default, the value is `public`. |
|table.name| Name of the table that you want to ingest data from. |
|slot.name| The slot name for each Postgres source. Each source should have a unique slot name.|
|slot.name| Optional. The slot name for each PostgreSQL source. By default, each slot name will be randomly generated. Each source should have a unique slot name.|

#### Data format

Expand Down