Skip to content

Commit 088decd

Browse files
authored
docs: source-versioning tweaks from review (#34184)
1 parent 3cab0b6 commit 088decd

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

doc/user/content/ingest-data/postgres/source-versioning.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,10 @@ In your upstream PostgreSQL database, drop the column `B` from the table `T`:
187187
ALTER TABLE T DROP COLUMN B;
188188
```
189189

190-
Dropping the column B will have no effect on `v3.T`.
190+
Dropping the column B will have no effect on `v3.T`. However, the drop affects
191+
`v2.T` and `v2.matview` from our earlier examples. When the user attempts to
192+
read from either, Materialize will report an error that the source table schema
193+
has been altered.
191194

192195
## Optional: Swap schemas
193196

doc/user/shared-content/postgres-known-limitations.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ This section refer to the legacy [`CREATE SOURCE ... FOR
1010
...`](/sql/create-source/postgres/) that creates subsources as part of the
1111
`CREATE SOURCE` operation. To be able to handle the upstream column additions
1212
and drops, see [`CREATE SOURCE (New Syntax)`](/sql/create-source/postgres-v2/)
13-
and see [`CREATE SOURCE (New Syntax)`](/sql/create-source/postgres-v2/) and
14-
[`CREATE TABLE FROM SOURCE`](/sql/create-table).
13+
and [`CREATE TABLE FROM SOURCE`](/sql/create-table).
1514

1615
{{< /note >}}
1716

0 commit comments

Comments
 (0)