~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/endspace.test

MergedĀ build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
select * from t1 order by text1;
24
24
explain select * from t1 order by text1;
25
25
 
26
 
alter table t1 modify text1 char(32) binary not null;
 
26
alter table t1 modify text1 char(32) not null;
27
27
check table t1;
28
28
select * from t1 ignore key (key1) where text1='teststring' or 
29
29
  text1 like 'teststring_%' ORDER BY text1;
30
30
select concat('|', text1, '|') from t1 where text1='teststring' or text1 like 'teststring_%';
31
31
select concat('|', text1, '|') from t1 where text1='teststring' or text1 > 'teststring\t';
32
32
select text1, length(text1) from t1 order by text1;
33
 
select text1, length(text1) from t1 order by binary text1;
 
33
select text1, length(text1) from t1 order by text1;
34
34
 
35
35
alter table t1 modify text1 blob not null, drop key key1, add key key1 (text1(20));
36
36
insert into t1 values ('teststring ');
66
66
select * from t1 order by text1;
67
67
explain select * from t1 order by text1;
68
68
 
69
 
alter table t1 modify text1 char(32) binary not null;
 
69
alter table t1 modify text1 char(32) not null;
70
70
select * from t1 order by text1;
71
71
drop table t1;
72
72
 
82
82
select * from t1 order by text1;
83
83
explain select * from t1 order by text1;
84
84
 
85
 
alter table t1 modify text1 char(32) binary not null;
 
85
alter table t1 modify text1 char(32) not null;
86
86
select * from t1 order by text1;
87
87
 
88
88
alter table t1 modify text1 blob not null, drop key key1, add key key1 (text1(20));