| Bug #23751 | server crash on INSERT if underlying table is differently defined | ||
|---|---|---|---|
| Submitted: | 29 Oct 2006 15:07 | Modified: | 6 Feb 2007 12:07 |
| Reporter: | Sergey Vojtovich | Email Updates: | |
| Status: | Closed | Impact on me: | |
| Category: | MySQL Server: Merge storage engine | Severity: | S3 (Non-critical) |
| Version: | 4.1 | OS: | Linux (Suse 10.0 32-bit) |
| Assigned to: | Sergey Vojtovich | CPU Architecture: | Any |
[29 Oct 2006 15:20]
MySQL Verification Team
Thank you for the bug report. Verified as described. I was not able to repeat on 5.0/5.1BK.

Description: Server crash on INSERT if underlying table is differently defined. How to repeat: CREATE TABLE tm1(a TEXT, b INT) ENGINE=MERGE UNION=(t1) INSERT_METHOD=LAST; CREATE TABLE t1(a INT, b TEXT); INSERT INTO tm1 VALUES('abcde', 0); DROP TABLE tm1, t1;