~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/endspace.test

Merge padraig's conflict resolves and trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
 
58
58
# Test HEAP tables (with BTREE keys)
59
59
 
60
 
create table t1 (text1 varchar(32) not NULL, KEY key1 using BTREE (text1)) engine=heap;
 
60
create temporary table t1 (text1 varchar(32) not NULL, KEY key1 using BTREE (text1)) engine=heap;
61
61
insert into t1 values ('teststring'), ('nothing'), ('teststring\t');
62
62
select * from t1 ignore key (key1) where text1='teststring' or 
63
63
  text1 like 'teststring_%' ORDER BY text1;