Skip to content

Commit

Permalink
[docs] Update Postgres CDC documents for required slot.name option (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Thorne-coder authored Jul 10, 2023
1 parent 0714688 commit 10ce714
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/content/connectors/postgres-cdc.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ CREATE TABLE shipments (
'database-name' = 'postgres',
'schema-name' = 'public',
'table-name' = 'shipments',
'slot.name' = 'flink',
-- experimental feature: incremental snapshot (default off)
'scan.incremental.snapshot.enabled' = 'true'
);
Expand Down Expand Up @@ -381,7 +382,8 @@ CREATE TABLE products (
'password' = 'postgres',
'database-name' = 'postgres',
'schema-name' = 'public',
'table-name' = 'shipments'
'table-name' = 'shipments',
'slot.name' = 'flink'
);
```

Expand Down

0 comments on commit 10ce714

Please sign in to comment.