~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/suite/parts/r/partition_decimal_innodb.result

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
create table t1 (a decimal(10,4) not null, primary key(a)) engine='InnoDB' 
 
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
Table   Create Table
 
9
t1      CREATE TABLE `t1` (
 
10
  `a` decimal(10,4) NOT NULL,
 
11
  PRIMARY KEY (`a`)
 
12
) ENGINE=InnoDB DEFAULT CHARSET=latin1 /*!50100 PARTITION BY KEY (a) (PARTITION pa1 MAX_ROWS = 20 MIN_ROWS = 2 ENGINE = InnoDB, PARTITION pa2 MAX_ROWS = 30 MIN_ROWS = 3 ENGINE = InnoDB, PARTITION pa3 MAX_ROWS = 30 MIN_ROWS = 4 ENGINE = InnoDB, PARTITION pa4 MAX_ROWS = 40 MIN_ROWS = 2 ENGINE = InnoDB) */
 
13
insert into t1 values (999999.9999), (-999999.9999), (123456.7899), (-123456.7899), (-1.5), (1), (0), (-1), (1.5), (1234.567), (-1234.567);
 
14
select * from t1;
 
15
a
 
16
-999999.9999
 
17
-123456.7899
 
18
-1234.5670
 
19
-1.5000
 
20
-1.0000
 
21
0.0000
 
22
1.0000
 
23
1.5000
 
24
1234.5670
 
25
123456.7899
 
26
999999.9999
 
27
select * from t1 where a=1234.567;
 
28
a
 
29
1234.5670
 
30
delete from t1 where a=1234.567;
 
31
select * from t1;
 
32
a
 
33
-999999.9999
 
34
-123456.7899
 
35
-1234.5670
 
36
-1.5000
 
37
-1.0000
 
38
0.0000
 
39
1.0000
 
40
1.5000
 
41
123456.7899
 
42
999999.9999
 
43
drop table t1;
 
44
create table t2 (a decimal(18,9) not null, primary key(a)) engine='InnoDB' 
 
45
partition by key (a) partitions 10;
 
46
show create table t2;
 
47
Table   Create Table
 
48
t2      CREATE TABLE `t2` (
 
49
  `a` decimal(18,9) NOT NULL,
 
50
  PRIMARY KEY (`a`)
 
51
) ENGINE=InnoDB DEFAULT CHARSET=latin1 /*!50100 PARTITION BY KEY (a) PARTITIONS 10  */
 
52
insert into t2 values (999999999.999999999), (-999999999.999999999), (-1.5), (-1), (0), (1.5), (1234.567), (-1234.567);
 
53
select * from t2;
 
54
a
 
55
-999999999.999999999
 
56
-1234.567000000
 
57
-1.500000000
 
58
-1.000000000
 
59
0.000000000
 
60
1.500000000
 
61
1234.567000000
 
62
999999999.999999999
 
63
select * from t2 where a=1234.567;
 
64
a
 
65
1234.567000000
 
66
delete from t2 where a=1234.567;
 
67
select * from t2;
 
68
a
 
69
-999999999.999999999
 
70
-1234.567000000
 
71
-1.500000000
 
72
-1.000000000
 
73
0.000000000
 
74
1.500000000
 
75
999999999.999999999
 
76
delete from t2;
 
77
1024*3 inserts;
 
78
select count(*) from t2;
 
79
count(*)
 
80
3072
 
81
drop table t2;