You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
create table `tb1`(id int(11) not null primary key auto_increment, c_int int)ENGINE=InnoDB DEFAULT CHARSET=utf8;
insert into `test`.`tb1` values (null,-2147483648);
insert into `test`.`tb1` values (null,NULL);
check results
# src mysql
mysql> select * from tb1;
+----+-------------+
| id | c_int |
+----+-------------+
| 1 | -2147483648 |
| 2 | NULL |
+----+-------------+
2 rows in set (0.00 sec)
# dest mysql
mysql> select * from tb1;
+----+-------------+
| id | c_int |
+----+-------------+
| 1 | -2147483648 |
+----+-------------+
1 row in set (0.00 sec)
No description provided.
The text was updated successfully, but these errors were encountered: