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);
10
select * from t1 where a=4294967293;
11
delete from t1 where a=4294967293;
15
eval create table t2 (a int unsigned not null, primary key(a)) engine=$engine
16
partition by key (a) partitions 10;
18
insert into t2 values (4294967295), (4294967294), (4294967293), (4294967292);
20
select * from t2 where a=4294967293;
21
delete from t2 where a=4294967293;
25
--echo $count inserts;
29
eval insert into t2 values ($count);
33
select count(*) from t2;
36
eval create table t3 (a int not null, primary key(a)) engine=$engine
37
partition by key (a) partitions 10;
39
insert into t3 values (2147483647), (2147483646), (2147483645), (2147483644), (-2147483648), (-2147483647), (1), (-1), (0);
41
select * from t3 where a=2147483645;
42
delete from t3 where a=2147483645;