~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/heap_btree.test

  • 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:
206
206
) ENGINE= MEMORY DEFAULT CHARSET= utf8;
207
207
INSERT INTO t1 VALUES('1'), ('2');
208
208
DROP TABLE t1;
209
 
CREATE TABLE t1 (
210
 
  c1 SET('1', '2'),
211
 
  UNIQUE USING BTREE(c1)
212
 
) ENGINE= MEMORY DEFAULT CHARSET= utf8;
213
 
INSERT INTO t1 VALUES('1'), ('2');
214
 
DROP TABLE t1;
215
209
 
216
210
#
217
211
# BUG#30590 - delete from memory table with composite btree primary key