1 eval create
table t1 (a year 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 ('1975'), (2020), ('1980'), ('2000');
10 select * from t1 where a=1980;
11 delete from t1 where a=1980;
15 eval create
table t2 (a year not null, primary key(a)) engine=$engine
16 partition by key (a) partitions 12;
18 insert into t2 values ('1975'), ('2020'), ('1980'), ('2000');
20 select * from t2 where a='1980';
21 delete from t2 where a='1980';
25 --echo $count inserts;
29 eval insert into t2 values (1901+$count);
33 select count(*) from t2;