summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/innodb/r/instant_alter_upgrade.result
blob: fc7d28963cacdfd006575ac0c7f3e91d1b7fecb2 (plain)
1
2
3
4
5
6
7
8
9
#
# MDEV-26577 InnoDB: Failing assertion: dict_tf2_is_valid(flags, flags2)
# during ADD COLUMN
#
CREATE TABLE t1(a INT PRIMARY KEY) ENGINE=InnoDB ROW_FORMAT=COMPRESSED;
CREATE TABLE t2(a INT PRIMARY KEY) ENGINE=InnoDB;
FLUSH TABLES;
ALTER TABLE t2 ADD COLUMN b INT;
DROP TABLE t1,t2;