~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/heap_btree.test

  • Committer: Brian Aker
  • Date: 2008-09-04 19:31:00 UTC
  • Revision ID: brian@tangent.org-20080904193100-l849hgghfy4urj43
Changing default character set from this point on.

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
207
INSERT INTO t1 VALUES('1'), ('2');
208
208
DROP TABLE t1;
209
209