~percona-core/percona-server/5.1

« back to all changes in this revision

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

  • Committer: Stewart Smith
  • Date: 2011-11-24 02:01:46 UTC
  • Revision ID: stewart@flamingspork.com-20111124020146-7l2fzzj28rhgwwlv
Import Percona Server patch: bug53761.patch

# name       : bug53761.patch
# maintainer : Alexey
#
# Backport of the fix for MySQL bug #53761 to 5.1
#

Show diffs side-by-side

added added

removed removed

Lines of Context:
201
201
text1
202
202
teststring      
203
203
teststring 
204
 
select text1, length(text1) from t1 where text1='teststring' or text1 like 'teststring_%';
 
204
select text1, length(text1) from t1 where text1='teststring' or text1 like 'teststring_%' order by 1, 2;
205
205
text1   length(text1)
206
206
teststring              11
207
207
teststring      10
208
208
teststring      11
209
 
select text1, length(text1) from t1 where text1='teststring' or text1 >= 'teststring\t';
 
209
select text1, length(text1) from t1 where text1='teststring' or text1 >= 'teststring\t' order by 1, 2;
210
210
text1   length(text1)
211
211
teststring              11
212
212
teststring      10