~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/t/endspace.test

Removed reference to aio.h - we don't reference its use anywhere.

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) not null;
 
26
alter table t1 modify text1 char(32) binary 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 text1;
 
33
select text1, length(text1) from t1 order by binary 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 ');
39
39
select concat('|', text1, '|') from t1 where text1='teststring';
40
40
select concat('|', text1, '|') from t1 where text1='teststring ';
41
41
 
42
 
alter table t1 modify text1 text not null;
 
42
alter table t1 modify text1 text not null, pack_keys=1;
43
43
select concat('|', text1, '|') from t1 where text1='teststring';
44
44
select concat('|', text1, '|') from t1 where text1='teststring ';
45
45
explain select concat('|', text1, '|') from t1 where text1='teststring ';
49
49
select concat('|', text1, '|') from t1 order by text1;
50
50
drop table t1;
51
51
 
52
 
create table t1 (text1 varchar(32) not NULL, KEY key1 (text1));
 
52
create table t1 (text1 varchar(32) not NULL, KEY key1 (text1)) pack_keys=0;
53
53
insert into t1 values ('teststring'), ('nothing'), ('teststring\t');
54
54
select concat('|', text1, '|') from t1 where text1='teststring' or text1 like 'teststring_%';
55
55
select concat('|', text1, '|') from t1 where text1='teststring' or text1 >= 'teststring\t';
56
56
drop table t1;
57
57
 
58
 
# Test MEMORY tables (with BTREE keys)
 
58
# Test HEAP tables (with BTREE keys)
59
59
 
60
 
create temporary table t1 (text1 varchar(32) not NULL, KEY key1 using BTREE (text1)) engine=MEMORY;
 
60
create 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;
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) not null;
 
69
alter table t1 modify text1 char(32) binary 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) not null;
 
85
alter table t1 modify text1 char(32) binary 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));
89
89
insert into t1 values ('teststring ');
90
90
select concat('|', text1, '|') from t1 order by text1;
91
91
 
92
 
alter table t1 modify text1 text not null;
 
92
alter table t1 modify text1 text not null, pack_keys=1;
93
93
select * from t1 where text1 like 'teststring_%';
94
94
 
95
95
# The following gives wrong result in InnoDB