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

« back to all changes in this revision

Viewing changes to mysql-test/suite/parts/inc/partition_int.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 int 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 (4294967295), (4294967294), (4294967293), (4294967292), (1), (2), (65535);
 
9
--sorted_result
 
10
select * from t1;
 
11
select * from t1 where a=4294967293;
 
12
delete from t1 where a=4294967293;
 
13
--sorted_result
 
14
select * from t1;
 
15
drop table t1;
 
16
 
 
17
eval create table t2 (a int unsigned not null, primary key(a)) engine=$engine 
 
18
partition by key (a) partitions 8;
 
19
show create table t2;
 
20
insert into t2 values (4294967295), (4294967294), (4294967293), (4294967292);
 
21
--sorted_result
 
22
select * from t2;
 
23
select * from t2 where a=4294967293;
 
24
delete from t2 where a=4294967293;
 
25
--sorted_result
 
26
select * from t2;
 
27
delete from t2;
 
28
let $count=$maxrows;
 
29
--echo $count inserts;
 
30
--disable_query_log
 
31
while ($count)
 
32
{
 
33
eval insert into t2 values ($count);
 
34
dec $count;
 
35
}
 
36
--enable_query_log
 
37
select count(*) from t2;
 
38
drop table t2;
 
39
 
 
40
eval create table t3 (a int not null, primary key(a)) engine=$engine 
 
41
partition by key (a) partitions 7;
 
42
show create table t3;
 
43
insert into t3 values (2147483647), (2147483646), (2147483645), (2147483644), (-2147483648), (-2147483647), (1), (-1), (0);
 
44
--sorted_result
 
45
select * from t3;
 
46
select * from t3 where a=2147483645;
 
47
delete from t3 where a=2147483645;
 
48
--sorted_result
 
49
select * from t3;
 
50
drop table t3;