1 eval create 
table t1 (a 
int unsigned not null, primary key(a)) engine=$engine 
 
    3 partition pa1 max_rows=20 min_rows=2,
 
    4 partition pa2 max_rows=30 min_rows=3,
 
    5 partition pa3 max_rows=30 min_rows=4,
 
    6 partition pa4 max_rows=40 min_rows=2);
 
    8 insert into t1 values (4294967295), (4294967294), (4294967293), (4294967292), (1), (2), (65535);
 
   11 select * from t1 where a=4294967293;
 
   12 delete from t1 where a=4294967293;
 
   17 eval create 
table t2 (a 
int unsigned not null, primary key(a)) engine=$engine 
 
   18 partition by key (a) partitions 8;
 
   20 insert into t2 values (4294967295), (4294967294), (4294967293), (4294967292);
 
   23 select * from t2 where a=4294967293;
 
   24 delete from t2 where a=4294967293;
 
   29 --echo $count inserts;
 
   33 eval insert into t2 values ($count);
 
   37 select count(*) from t2;
 
   40 eval create 
table t3 (a 
int not null, primary key(a)) engine=$engine 
 
   41 partition by key (a) partitions 7;
 
   43 insert into t3 values (2147483647), (2147483646), (2147483645), (2147483644), (-2147483648), (-2147483647), (1), (-1), (0);
 
   46 select * from t3 where a=2147483645;
 
   47 delete from t3 where a=2147483645;