~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/heap_btree.test

  • Committer: Brian Aker
  • Date: 2009-12-01 23:52:10 UTC
  • mfrom: (1235.1.4 push)
  • Revision ID: brian@gaz-20091201235210-rb720ykhz8e06fda
Merge Brian + Monty. This has the HEAP -> MEMORY change in it, so some
breakage for wrong table name is expected.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#
2
 
# Test of heap tables.
 
2
# Test of MEMORY tables.
3
3
#
4
4
 
5
5
--disable_warnings
6
6
drop table if exists t1;
7
7
--enable_warnings
8
8
 
9
 
create temporary table t1 (a int not null,b int not null, primary key using BTREE (a)) engine=heap comment="testing heaps";
 
9
create temporary table t1 (a int not null,b int not null, primary key using BTREE (a)) engine=MEMORY comment="testing heaps";
10
10
insert into t1 values(1,1),(2,2),(3,3),(4,4);
11
11
delete from t1 where a=1 or a=0;
12
12
#show table status like "t1";
20
20
alter table t1 add c int not null, add key using BTREE (c,a);
21
21
drop table t1;
22
22
 
23
 
create temporary table t1 (a int not null,b int not null, primary key using BTREE (a)) engine=heap comment="testing heaps";
 
23
create temporary table t1 (a int not null,b int not null, primary key using BTREE (a)) engine=MEMORY comment="testing heaps";
24
24
insert into t1 values(-2,-2),(-1,-1),(0,0),(1,1),(2,2),(3,3),(4,4);
25
25
delete from t1 where a > -3;
26
26
select * from t1;
27
27
drop table t1;
28
28
 
29
 
create temporary table t1 (a int not null,b int not null, primary key using BTREE (a)) engine=heap comment="testing heaps";
 
29
create temporary table t1 (a int not null,b int not null, primary key using BTREE (a)) engine=MEMORY comment="testing heaps";
30
30
insert into t1 values(1,1),(2,2),(3,3),(4,4);
31
31
alter table t1 modify a int not null auto_increment, engine=innodb, comment="new innodb table";
32
32
#show table status like "t1";
33
33
select * from t1;
34
34
drop table t1;
35
35
 
36
 
create temporary table t1 (a int not null) engine=heap;
 
36
create temporary table t1 (a int not null) engine=MEMORY;
37
37
insert into t1 values (869751),(736494),(226312),(802616),(728912);
38
38
select * from t1 where a > 736494;
39
39
alter table t1 add unique uniq_id using BTREE (a);
46
46
drop table t1;
47
47
 
48
48
create temporary table t1 (x int not null, y int not null, key x  using BTREE (x,y), unique y  using BTREE (y))
49
 
engine=heap;
 
49
engine=MEMORY;
50
50
insert into t1 values (1,1),(2,2),(1,3),(2,4),(2,5),(2,6);
51
51
explain select * from t1 where x=1;
52
52
select * from t1 where x=1;
56
56
explain select * from t1,t1 as t2 where t1.x=t2.y;
57
57
drop table t1;
58
58
 
59
 
create temporary table t1 (a int) engine=heap;
 
59
create temporary table t1 (a int) engine=MEMORY;
60
60
insert into t1 values(1);
61
61
select max(a) from t1;
62
62
drop table t1;
63
63
 
64
 
CREATE TEMPORARY TABLE t1 ( a int not null default 0, b int not null default 0,  key  using BTREE (a,b),  key  using BTREE (b)  ) ENGINE=HEAP;
 
64
CREATE TEMPORARY TABLE t1 ( a int not null default 0, b int not null default 0,  key  using BTREE (a,b),  key  using BTREE (b)  ) ENGINE=MEMORY;
65
65
insert into t1 values(1,1),(1,2),(2,3),(1,3),(1,4),(1,5),(1,6);
66
66
select * from t1 where a=1; 
67
67
insert into t1 values(1,1),(1,2),(2,3),(1,3),(1,4),(1,5),(1,6);
75
75
explain select * from t1 where b=1;
76
76
drop table t1;
77
77
 
78
 
create temporary table t1 (id int not null, primary key  using BTREE (id)) engine=HEAP;
 
78
create temporary table t1 (id int not null, primary key  using BTREE (id)) engine=MEMORY;
79
79
insert into t1 values(1);
80
80
select max(id) from t1; 
81
81
insert into t1 values(2);
83
83
replace into t1 values(1);
84
84
drop table t1;
85
85
 
86
 
create temporary table t1 (n int) engine=heap;
 
86
create temporary table t1 (n int) engine=MEMORY;
87
87
drop table t1;
88
88
 
89
 
create temporary table t1 (n int) engine=heap;
 
89
create temporary table t1 (n int) engine=MEMORY;
90
90
drop table if exists t1;
91
91
 
92
92
# Test of non unique index
93
93
 
94
94
CREATE TEMPORARY table t1(f1 int not null,f2 char(20) not 
95
 
null,index(f2)) engine=heap;
 
95
null,index(f2)) engine=MEMORY;
96
96
INSERT into t1 set f1=12,f2="bill";
97
97
INSERT into t1 set f1=13,f2="bill";
98
98
INSERT into t1 set f1=14,f2="bill";
110
110
# Test when using part key searches
111
111
#
112
112
 
113
 
create temporary table t1 (btn char(10) not null, key using BTREE (btn)) engine=heap;
 
113
create temporary table t1 (btn char(10) not null, key using BTREE (btn)) engine=MEMORY;
114
114
insert into t1 values ("hello"),("hello"),("hello"),("hello"),("hello"),("a"),("b"),("c"),("d"),("e"),("f"),("g"),("h"),("i");
115
115
explain select * from t1 where btn like "i%";
116
116
--replace_column 9 #
136
136
  b int default NULL,
137
137
  KEY a using BTREE (a),
138
138
  UNIQUE b using BTREE (b)
139
 
) engine=heap;
 
139
) engine=MEMORY;
140
140
INSERT INTO t1 VALUES (NULL,99),(99,NULL),(1,1),(2,2),(1,3);
141
141
SELECT * FROM t1 WHERE a=NULL;
142
142
explain SELECT * FROM t1 WHERE a IS NULL;
149
149
INSERT INTO t1 VALUES (1,3);
150
150
DROP TABLE t1;
151
151
 
152
 
CREATE TEMPORARY TABLE t1 (a int, b int, c int, key using BTREE (a, b, c)) engine=heap;
 
152
CREATE TEMPORARY TABLE t1 (a int, b int, c int, key using BTREE (a, b, c)) engine=MEMORY;
153
153
INSERT INTO t1 VALUES (1, NULL, NULL), (1, 1, NULL), (1, NULL, 1);
154
154
SELECT * FROM t1 WHERE a=1 and b IS NULL;
155
155
SELECT * FROM t1 WHERE a=1 and c IS NULL;
160
160
# Test when deleting all rows
161
161
#
162
162
 
163
 
CREATE TEMPORARY TABLE t1 (a int not null, primary key using BTREE (a)) engine=heap;
 
163
CREATE TEMPORARY TABLE t1 (a int not null, primary key using BTREE (a)) engine=MEMORY;
164
164
INSERT into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10),(11);
165
165
DELETE from t1 where a < 100;
166
166
SELECT * from t1;
170
170
# Bug #9719: problem with delete
171
171
#
172
172
 
173
 
create temporary table t1(a int not null, key using btree(a)) engine=heap;
 
173
create temporary table t1(a int not null, key using btree(a)) engine=MEMORY;
174
174
insert into t1 values (2), (2), (2), (1), (1), (3), (3), (3), (3);
175
175
select a from t1 where a > 2 order by a;
176
176
delete from t1 where a < 4;
221
221
--echo End of 4.1 tests
222
222
 
223
223
#
224
 
# BUG#18160 - Memory-/HEAP Table endless growing indexes
 
224
# BUG#18160 - Memory-/MEMORY Table endless growing indexes
225
225
#
226
226
CREATE TEMPORARY TABLE t1(val INT, KEY USING BTREE(val)) ENGINE=memory;
227
227
INSERT INTO t1 VALUES(0);