summaryrefslogtreecommitdiff
path: root/mysql-test/r/endspace.result
diff options
context:
space:
mode:
authorunknown <heikki@hundin.mysql.fi>2005-03-17 17:44:26 +0200
committerunknown <heikki@hundin.mysql.fi>2005-03-17 17:44:26 +0200
commite4a2c7e92f375b4127c02941be0ae9c6f18c3ee6 (patch)
treec6add54e459d35afd5785817bcf83edf0e4ea987 /mysql-test/r/endspace.result
parent94c3958e5de16f325bbfd161522e7e7cb9ea1154 (diff)
downloadmariadb-git-e4a2c7e92f375b4127c02941be0ae9c6f18c3ee6.tar.gz
endspace.result:
Someone has fixed the calculation of length() for a returned InnoDB VARCHAR value: update endspace.result to have the correct value length('teststring') == 10 mysql-test/r/endspace.result: Someone has fixed the calculation of length() for a returned InnoDB VARCHAR value: update endspace.result to have the correct value length('teststring') == 10
Diffstat (limited to 'mysql-test/r/endspace.result')
-rw-r--r--mysql-test/r/endspace.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/endspace.result b/mysql-test/r/endspace.result
index e9396c9a6ed..0834c11ccda 100644
--- a/mysql-test/r/endspace.result
+++ b/mysql-test/r/endspace.result
@@ -201,11 +201,11 @@ teststring
select text1, length(text1) from t1 where text1='teststring' or text1 like 'teststring_%';
text1 length(text1)
teststring 11
-teststring 11
+teststring 10
select text1, length(text1) from t1 where text1='teststring' or text1 >= 'teststring\t';
text1 length(text1)
teststring 11
-teststring 11
+teststring 10
select concat('|', text1, '|') from t1 order by text1;
concat('|', text1, '|')
|nothing|