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

tests: Adapt to new reality when table in Pg source was dropped #31046

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion test/pg-cdc-old-syntax/alter-table-after-source.td
Original file line number Diff line number Diff line change
Expand Up @@ -388,4 +388,4 @@ DROP TABLE drop_table;

# Table is dropped
! SELECT * FROM drop_table;
contains:table was dropped
regex:(table was dropped|incompatible schema change)
2 changes: 1 addition & 1 deletion test/pg-cdc/alter-source.td
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ ALTER TABLE table_a REPLICA IDENTITY FULL;
INSERT INTO table_a VALUES (9, 'nine');

! SELECT * FROM table_a;
contains:table was dropped
regex:(table was dropped|incompatible schema change)

# We are not aware that the new table_a is different
! CREATE TABLE table_a FROM SOURCE mz_source (REFERENCE table_a);
Expand Down
2 changes: 1 addition & 1 deletion test/pg-cdc/alter-table-after-source.td
Original file line number Diff line number Diff line change
Expand Up @@ -406,4 +406,4 @@ DROP TABLE drop_table;

# Table is dropped
! SELECT * FROM drop_table;
contains:table was dropped
regex:(table was dropped|incompatible schema change)
Loading