~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: brian
  • Date: 2008-06-29 12:50:19 UTC
  • mfrom: (12.1.4 drizzle)
  • Revision ID: brian@localhost.localdomain-20080629125019-qxk9qma8esphwwus
Committing merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
eval create table t1 (a tinyint unsigned 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 (255), (254), (253), (252), (1), (2), (128);
9
 
select * from t1;
10
 
select * from t1 where a=253;
11
 
delete from t1 where a=253;
12
 
select * from t1;
13
 
drop table t1;
14
 
 
15
 
eval create table t2 (a tinyint unsigned not null, primary key(a)) engine=$engine 
16
 
partition by key (a) partitions 8;
17
 
show create table t2;
18
 
insert into t2 values (255), (254), (253), (252);
19
 
select * from t2;
20
 
select * from t2 where a=253;
21
 
delete from t2 where a=253;
22
 
select * from t2;
23
 
delete from t2;
24
 
let $count=255;
25
 
--echo 255 inserts;
26
 
--disable_query_log
27
 
while ($count)
28
 
{
29
 
eval insert into t2 values ($count);
30
 
dec $count;
31
 
}
32
 
--enable_query_log
33
 
select count(*) from t2;
34
 
drop table t2;
35
 
 
36
 
eval create table t3 (a tinyint not null, primary key(a)) engine=$engine 
37
 
partition by key (a) partitions 10;
38
 
show create table t3;
39
 
insert into t3 values (127), (126), (125), (124), (-128), (-127), (1), (-1), (0);
40
 
select * from t3;
41
 
select * from t3 where a=125;
42
 
delete from t3 where a=125;
43
 
select * from t3;
44
 
drop table t3;