From e4a2c7e92f375b4127c02941be0ae9c6f18c3ee6 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 17 Mar 2005 17:44:26 +0200 Subject: [PATCH] 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 --- mysql-test/r/endspace.result | 4 ++-- 1 file 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|