1 eval create 
table t1 (a 
float 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 (-3.402823466
E+38), (3.402823466E+38), (-1.5), (-1), (0), (1), (1.5);
 
   10 select * from t1 where a=1.5;
 
   11 delete from t1 where a=1.5;
 
   15 eval create 
table t2 (a 
float not null, primary key(a)) engine=$engine 
 
   16 partition by key (a) partitions 10;
 
   18 insert into t2 values (-3.402823466E+38), (-3.402823466E+37), (-123.456), (0), (1234546.789), (123.456), (1.5);
 
   20 #result set is empty: Not a bug with float!! 
   21 select * from t2 where a=123.456;
 
   22 delete from t2 where a=123.456;
 
   24 select * from t2 where a=1.5;
 
   25 delete from t2 where a=1.5;
 
   29 --echo $maxrows*3 inserts;
 
   33 eval insert into t2 values ($count);
 
   34 eval insert into t2 values ($count+0.33);
 
   35 eval insert into t2 values ($count+0.75);
 
   39 select count(*) from t2;