~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/endspace.result

  • Committer: Brian Aker
  • Date: 2009-07-31 23:20:14 UTC
  • mto: This revision was merged to the branch mainline in revision 1108.
  • Revision ID: brian@gaz-20090731232014-amd6192q1n8wade0
Heap is now tmp only table

Show diffs side-by-side

added added

removed removed

Lines of Context:
132
132
|teststring     |
133
133
|teststring|
134
134
drop table t1;
135
 
create table t1 (text1 varchar(32) not NULL, KEY key1 using BTREE (text1)) engine=heap;
 
135
create temporary table t1 (text1 varchar(32) not NULL, KEY key1 using BTREE (text1)) engine=heap;
136
136
insert into t1 values ('teststring'), ('nothing'), ('teststring\t');
137
137
select * from t1 ignore key (key1) where text1='teststring' or 
138
138
text1 like 'teststring_%' ORDER BY text1;