~vadim-tk/percona-server/flushing-algo

« back to all changes in this revision

Viewing changes to mysql-test/suite/parts/inc/partition_datetime.inc

  • Committer: root
  • Date: 2011-10-29 01:34:40 UTC
  • Revision ID: root@hppro1.office.percona.com-20111029013440-qhnf4jk8kdjcf4e0
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
eval create table t1 (a datetime not null, primary key(a)) engine=$engine 
 
2
partition by key (a) (
 
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);
 
7
show create table t1;
 
8
insert into t1 values ('1975-01-01 21:21:21'), ('2020-12-31 12:10:30'), ('1980-10-14 03:03'), ('2000-06-15 23:59');
 
9
select * from t1;
 
10
select * from t1 where a=19801014030300;
 
11
delete from t1 where a=19801014030300;
 
12
select * from t1;
 
13
drop table t1;
 
14
 
 
15
eval create table t2 (a datetime not null, primary key(a)) engine=$engine 
 
16
partition by key (a) partitions 12;
 
17
show create table t2;
 
18
insert into t2 values ('1975-01-01 0:1:1'), ('2020-12-31 10:11:12'), ('1980-10-14 13:14:15'), ('2000-06-15 14:15:16');
 
19
select * from t2;
 
20
select * from t2 where a='1980-10-14 13:14:15';
 
21
delete from t2 where a='1980-10-14 13:14:15';
 
22
select * from t2;
 
23
delete from t2;
 
24
let $count=59;
 
25
--echo $count inserts;
 
26
#--disable_query_log
 
27
while ($count)
 
28
{
 
29
eval insert into t2 values (19700101000000+$count);
 
30
dec $count;
 
31
}
 
32
select count(*) from t2;
 
33
select * from t2;
 
34
drop table t2;
 
35
 
 
36
eval create table t3 (a datetime not null, primary key(a)) engine=$engine 
 
37
partition by range (month(a)) subpartition by key (a)
 
38
subpartitions 3 (
 
39
partition quarter1 values less than (4),
 
40
partition quarter2 values less than (7),
 
41
partition quarter3 values less than (10), 
 
42
partition quarter4 values less than (13)
 
43
);
 
44
show create table t3;
 
45
let $count=12;
 
46
--echo $count inserts;
 
47
while ($count)
 
48
{
 
49
eval insert into t3 values (adddate(19700101000000,interval $count-1 month));
 
50
dec $count;
 
51
}
 
52
select count(*) from t3;
 
53
select * from t3;
 
54
drop table t3;
 
55
 
 
56
eval create table t4 (a datetime not null, primary key(a)) engine=$engine 
 
57
partition by list (month(a)) subpartition by key (a)
 
58
subpartitions 3 (
 
59
partition quarter1 values in (1,2,3),
 
60
partition quarter2 values in (4,5,6),
 
61
partition quarter3 values in (7,8,9), 
 
62
partition quarter4 values in (10,11,12)
 
63
);
 
64
show create table t4;
 
65
let $count=12;
 
66
--echo $count inserts;
 
67
while ($count)
 
68
{
 
69
eval insert into t4 values (adddate(19700101000000,interval $count-1 month));
 
70
dec $count;
 
71
}
 
72
select count(*) from t4;
 
73
select * from t4;
 
74
drop table t4;