~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/t/heap_btree.test

  • Committer: Monty Taylor
  • Date: 2008-07-05 17:07:46 UTC
  • mto: This revision was merged to the branch mainline in revision 63.
  • Revision ID: monty@inaugust.com-20080705170746-8aq11u9fuwtfwy85
Removed my_alarm. Made my_lock only do the non-alarm version. Moved my_lock to MyISAM where it belongs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
explain select * from t1 where b=1;
74
74
drop table t1;
75
75
 
76
 
create table t1 (id int not null, primary key  using BTREE (id)) engine=HEAP;
 
76
create table t1 (id int unsigned not null, primary key  using BTREE (id)) engine=HEAP;
77
77
insert into t1 values(1);
78
78
select max(id) from t1; 
79
79
insert into t1 values(2);
203
203
CREATE TABLE t1 (
204
204
  c1 ENUM('1', '2'),
205
205
  UNIQUE USING BTREE(c1)
206
 
) ENGINE= MEMORY;
 
206
) ENGINE= MEMORY DEFAULT CHARSET= utf8;
 
207
INSERT INTO t1 VALUES('1'), ('2');
 
208
DROP TABLE t1;
 
209
CREATE TABLE t1 (
 
210
  c1 SET('1', '2'),
 
211
  UNIQUE USING BTREE(c1)
 
212
) ENGINE= MEMORY DEFAULT CHARSET= utf8;
207
213
INSERT INTO t1 VALUES('1'), ('2');
208
214
DROP TABLE t1;
209
215