~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: brian
  • Date: 2008-07-03 12:39:14 UTC
  • Revision ID: brian@localhost.localdomain-20080703123914-lry82qf74f6cbyzs
Disabling myisam tools until incomming link patch from Monty

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