[Bug 1366073] Re: Combination of CREATE, RENAME, and ALTER TABLE statements on related tables causes crash

Laurynas Biveinis laurynas.biveinis at gmail.com
Fri Sep 19 15:27:38 UTC 2014


A reduced testcase that produces bug 1364457 assert failure:

CREATE TABLE test_table (id INT UNSIGNED PRIMARY KEY) ENGINE=INNODB;
CREATE TABLE test_table1 (related_id INT UNSIGNED, FOREIGN KEY (related_id) REFERENCES test_table (id)) ENGINE=INNODB;
CREATE TABLE test_table2 (related_id INT UNSIGNED, FOREIGN KEY (related_id) REFERENCES test_table (id)) ENGINE=INNODB;
CREATE TABLE test_table3 (related_id INT UNSIGNED, FOREIGN KEY (related_id) REFERENCES test_table (id)) ENGINE=INNODB;
RENAME TABLE test_table1 TO testTable1;
ALTER TABLE testTable1 CHANGE COLUMN related_id relatedId INT UNSIGNED;

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-5.6 in Ubuntu.
https://bugs.launchpad.net/bugs/1366073

Title:
  Combination of CREATE, RENAME, and ALTER TABLE statements on related
  tables causes crash

To manage notifications about this bug go to:
https://bugs.launchpad.net/mysql-server/+bug/1366073/+subscriptions



More information about the Ubuntu-server-bugs mailing list