~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-03-17 14:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20100317145602-x7e30l1b2sb5s6w6
Tags: upstream-5.1.45
ImportĀ upstreamĀ versionĀ 5.1.45

Show diffs side-by-side

added added

removed removed

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