~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/r/endspace.result

Removed DBUG symbols and fixed TRUE/FALSE

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
teststring
45
45
explain select * from t1 order by text1;
46
46
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
47
 
1       SIMPLE  t1      index   NULL    key1    130     NULL    3       Using index
 
47
1       SIMPLE  t1      index   NULL    key1    34      NULL    3       Using index
48
48
alter table t1 modify text1 char(32) binary not null;
49
49
check table t1;
50
50
Table   Op      Msg_type        Msg_text
100
100
|teststring |
101
101
explain select concat('|', text1, '|') from t1 where text1='teststring ';
102
102
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
103
 
1       SIMPLE  t1      ref     key1    key1    82      const   2       Using where
 
103
1       SIMPLE  t1      ref     key1    key1    22      const   2       Using where
104
104
select concat('|', text1, '|') from t1 where text1 like 'teststring_%';
105
105
concat('|', text1, '|')
106
106
|teststring     |
181
181
teststring
182
182
explain select * from t1 order by text1;
183
183
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
184
 
1       SIMPLE  t1      index   NULL    key1    130     NULL    3       Using index
 
184
1       SIMPLE  t1      index   NULL    key1    34      NULL    3       Using index
185
185
alter table t1 modify text1 char(32) binary not null;
186
186
select * from t1 order by text1;
187
187
text1