Bug #5728 | 'int not null' make next enum (using cp1251) corrupted in mysqldump output | ||
---|---|---|---|
Submitted: | 24 Sep 2004 9:56 | Modified: | 27 Oct 2004 3:21 |
Reporter: | Egor Egorov | Email Updates: | |
Status: | Can't repeat | Impact on me: | |
Category: | MySQL Server | Severity: | S2 (Serious) |
Version: | 4.1.3-4.1.5 | OS: | Windows (Windows 2000) |
Assigned to: | CPU Architecture: | Any |
[24 Sep 2004 9:56]
Egor Egorov
[27 Oct 2004 3:21]
MySQL Verification Team
I wasn't able to repeat the behavior reported testing 4.1.3b/4.1.5/4.1.6. Below the output of mysqldump 4.1.3 of the table offended: -- -- Table structure for table `t2` -- DROP TABLE IF EXISTS `t2`; CREATE TABLE `t2` ( `a` int(11) NOT NULL default '0', `b` enum('А','Б') default NULL ) ENGINE=MyISAM DEFAULT CHARSET=cp1251; -- -- Dumping data for table `t2` -- mysql> show create table t2; +-------+-------------------------------------------- --------------------------+ | Table | Create Table | +-------+-------------------------------------------- --------------------------+ | t2 | CREATE TABLE `t2` ( `a` int(11) NOT NULL default '0', `b` enum('А','Б') default NULL ) ENGINE=MyISAM DEFAULT CHARSET=cp1251 | +-------+-------------------------------------------- --------------------------+ 1 row in set (0.01 sec)