Skip to content
Merged
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
4 changes: 4 additions & 0 deletions test/mysql-cdc-old-syntax/types-enum.td
Original file line number Diff line number Diff line change
Expand Up @@ -76,5 +76,9 @@ $ mysql-execute name=mysql
ALTER TABLE enum_type CHANGE f1 f1 ENUM ('val2', 'val1', 'val3', 'val4');
INSERT INTO enum_type VALUES ('val1', 'val1');

# TODO: Reenable when https://github.com/MaterializeInc/database-issues/issues/7776 is fixed
$ skip-if
SELECT true

! SELECT * FROM enum_type;
contains:incompatible schema change: column f1 in table enum_type has been altered
4 changes: 4 additions & 0 deletions test/mysql-cdc/types-enum.td
Original file line number Diff line number Diff line change
Expand Up @@ -103,5 +103,9 @@ $ mysql-execute name=mysql
ALTER TABLE enum_type CHANGE f1 f1 ENUM ('val2', 'val1', 'val3', 'val4');
INSERT INTO enum_type VALUES ('val1', 'val1');

# TODO: Reenable when https://github.com/MaterializeInc/database-issues/issues/7776 is fixed
$ skip-if
SELECT true

! SELECT * FROM enum_type;
contains:incompatible schema change: column f1 in table enum_type has been altered