Re: A bug with innodb and non innodb multi-table delete.

2003-02-13 Thread Sinisa Milivojevic
Scott Wong writes: > Version: Mysql 4.0.10-gamma > > Description: Mysql client loses connection when doing a multi-table delete if one >table is innodb and the other is myISAM. > > How to Repeat : > > > drop table parent; > drop table child; > > CREATE TABLE parent(id INT NOT NULL, >

A bug with innodb and non innodb multi-table delete.

2003-02-12 Thread Scott Wong
Version: Mysql 4.0.10-gamma Description: Mysql client loses connection when doing a multi-table delete if one table is innodb and the other is myISAM. How to Repeat : drop table parent; drop table child; CREATE TABLE parent(id INT NOT NULL, PRIMARY KEY (id)) TYPE=INNOD