Bug #15313 | Dropping Default Date Corrupts Field | ||
---|---|---|---|
Submitted: | 29 Nov 2005 13:38 | Modified: | 30 Dec 2005 13:57 |
Reporter: | Trevor White | Email Updates: | |
Status: | No Feedback | Impact on me: | |
Category: | MySQL Server | Severity: | S2 (Serious) |
Version: | 5.0.15 | OS: | Other (Sco Unix) |
Assigned to: | CPU Architecture: | Any |
[29 Nov 2005 13:38]
Trevor White
[30 Nov 2005 13:57]
Valeriy Kravchuk
Thank you for a problem report. Sorry, but I was not able to repeat the problem you described with 5.0.17-BK on Linux: mysql> create table tt1 (c1 int, c2 timestamp default '2005-01-01 01:00:00'); Query OK, 0 rows affected (0,00 sec) mysql> insert into tt1 (c1) values(1); Query OK, 1 row affected (0,01 sec) mysql> select * from tt1; +------+---------------------+ | c1 | c2 | +------+---------------------+ | 1 | 2005-01-01 01:00:00 | +------+---------------------+ 1 row in set (0,00 sec) mysql> alter table tt1 alter column c2 drop default; Query OK, 0 rows affected (0,01 sec) Records: 0 Duplicates: 0 Warnings: 0 mysql> select * from tt1; +------+---------------------+ | c1 | c2 | +------+---------------------+ | 1 | 2005-01-01 01:00:00 | +------+---------------------+ 1 row in set (0,00 sec) mysql> insert into tt1 values(1, '2005-01-02 02:00:00'); Query OK, 1 row affected (0,00 sec) mysql> select * from tt1; +------+---------------------+ | c1 | c2 | +------+---------------------+ | 1 | 2005-01-01 01:00:00 | | 1 | 2005-01-02 02:00:00 | +------+---------------------+ 2 rows in set (0,00 sec) mysql> show create table tt1; +-------+--------------------------------------------------------------------------------------------------------------------+ | Table | Create Table | +-------+--------------------------------------------------------------------------------------------------------------------+ | tt1 | CREATE TABLE `tt1` ( `c1` int(11) default NULL, `c2` timestamp NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 | +-------+--------------------------------------------------------------------------------------------------------------------+ 1 row in set (0,00 sec) So, please, try po perform the same actions on your server and inform about the results. Any ideas on what shell I do to repeat the problem you described are welcomed too.
[1 Jan 2006 0:00]
Bugs System
No feedback was provided for this bug for over a month, so it is being suspended automatically. If you are able to provide the information that was originally requested, please do so and change the status of the bug back to "Open".