~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/endspace.result

  • Committer: Brian Aker
  • Date: 2009-08-17 06:21:44 UTC
  • mto: This revision was merged to the branch mainline in revision 1118.
  • Revision ID: brian@gaz-20090817062144-8lxn1sg93pd8nhev
Remove PACK_KEYS

Show diffs side-by-side

added added

removed removed

Lines of Context:
89
89
select concat('|', text1, '|') from t1 where text1='teststring ';
90
90
concat('|', text1, '|')
91
91
|teststring |
92
 
alter table t1 modify text1 text not null, pack_keys=1;
 
92
alter table t1 modify text1 text not null;
93
93
select concat('|', text1, '|') from t1 where text1='teststring';
94
94
concat('|', text1, '|')
95
95
|teststring|
121
121
|teststring|
122
122
|teststring |
123
123
drop table t1;
124
 
create table t1 (text1 varchar(32) not NULL, KEY key1 (text1)) pack_keys=0;
 
124
create table t1 (text1 varchar(32) not NULL, KEY key1 (text1));
125
125
insert into t1 values ('teststring'), ('nothing'), ('teststring\t');
126
126
select concat('|', text1, '|') from t1 where text1='teststring' or text1 like 'teststring_%';
127
127
concat('|', text1, '|')
196
196
|teststring|
197
197
|teststring     |
198
198
|teststring |
199
 
alter table t1 modify text1 text not null, pack_keys=1;
 
199
alter table t1 modify text1 text not null;
200
200
select * from t1 where text1 like 'teststring_%';
201
201
text1
202
202
teststring