year 2038 bug in MySQL

today I hit the “year 2038″ bug. while working on MySQL, I did something like: mysql> create table y2038 (x timestamp); mysql> insert into y2038 values (’1900-01-01′); Query OK, 1 row affected, 1 warning (0.04 sec) mysql> insert into y2038 values (’2050-01-01′); Query OK, 1 row affected, 1 warning (0.04 sec) mysql> select * from [...]

Also tagged , ,