1127
1127
insert t1 values (1, "aaa", "bbb"), (NULL, "", "ccccc"), (0, NULL, "");
1128
1128
insert t2 select * from t1;
1129
1129
insert t3 select * from t1;
1130
checksum table t1, t2, t3, t4;
1138
checksum table t1, t2, t3, t4;
1146
checksum table t1, t2, t3, t4;
1155
1131
create table t1 (id int, name char(10) not null, name2 char(10) not null) engine=innodb;
1156
1132
insert into t1 values(1,'first','fff'),(2,'second','sss'),(3,'third','ttt');