215
210
insert into t1 values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
216
211
create table t2 (a int, filler1 char(200), filler2 char(200), key(a));
212
insert into t2 select A.a + 10*B.a, 'filler','filler' from t1 A, t1 B;
219
214
update t2 set a=3 where a=2;
221
215
show status like 'handler_read%';