Skip to content

Commit cb2ddc3

Browse files
add line on controlling syncs
1 parent 525ab58 commit cb2ddc3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

docs/integrations/data-ingestion/clickpipes/postgres/schema-changes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,5 @@ ClickPipes for Postgres can detect schema changes in the source tables and, in s
1313
| Adding a new column (`ALTER TABLE ADD COLUMN ...`) | Propagated automatically once the table gets an insert/update/delete. The new column(s) will be populated for all rows replicated after the schema change |
1414
| Adding a new column with a default value (`ALTER TABLE ADD COLUMN ... DEFAULT ...`) | Propagated automatically once the table gets an insert/update/delete. The new column(s) will be populated for all rows replicated after the schema change, but existing rows will not show the default value without a full table refresh |
1515
| Dropping an existing column (`ALTER TABLE DROP COLUMN ...`) | Detected, but **not** propagated. The dropped column(s) will be populated with `NULL` for all rows replicated after the schema change |
16+
17+
Note that column addition will be propagated at the end of a batch's sync, which could occur after the sync interval or pull batch size is reached. More information on controlling syncs [here](./controlling_sync.md)

0 commit comments

Comments
 (0)