Commit ee987331 authored by unknown's avatar unknown
Browse files

endspace.result:

  Update endspace.result now that InnoDB pads BLOBs properly with spaces in comparisons


mysql-test/r/endspace.result:
  Update endspace.result now that InnoDB pads BLOBs properly with spaces in comparisons
parent 31ab90c8
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -202,10 +202,12 @@ select text1, length(text1) from t1 where text1='teststring' or text1 like 'test
text1	length(text1)
teststring		11
teststring	10
teststring 	11
select text1, length(text1) from t1 where text1='teststring' or text1 >= 'teststring\t';
text1	length(text1)
teststring		11
teststring	10
teststring 	11
select concat('|', text1, '|') from t1 order by text1;
concat('|', text1, '|')
|nothing|