~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

Renamed more stuff to drizzle.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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