~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/heap_btree.result

  • Committer: Brian Aker
  • Date: 2008-08-14 20:59:41 UTC
  • Revision ID: brian@tangent.org-20080814205941-rdqc6mqguf50mvoq
Remove SET

Show diffs side-by-side

added added

removed removed

Lines of Context:
301
301
) ENGINE= MEMORY DEFAULT CHARSET= utf8;
302
302
INSERT INTO t1 VALUES('1'), ('2');
303
303
DROP TABLE t1;
304
 
CREATE TABLE t1 (
305
 
c1 SET('1', '2'),
306
 
UNIQUE USING BTREE(c1)
307
 
) ENGINE= MEMORY DEFAULT CHARSET= utf8;
308
 
INSERT INTO t1 VALUES('1'), ('2');
309
 
DROP TABLE t1;
310
304
CREATE TABLE t1 (a INT, KEY USING BTREE(a)) ENGINE=MEMORY;
311
305
INSERT INTO t1 VALUES(1),(2),(2);
312
306
DELETE FROM t1 WHERE a=2;