summaryrefslogtreecommitdiff
path: root/mysql-test/t
diff options
context:
space:
mode:
authorunknown <bar@mysql.com>2005-10-13 21:28:44 +0500
committerunknown <bar@mysql.com>2005-10-13 21:28:44 +0500
commit9cd5d2e12ff38d815a37da0bdb218d19181ca7b9 (patch)
treef31fc507ab0b909aa996135d030561785adf4fe1 /mysql-test/t
parent852dad946404ab41cd72c3435694ae02782f5a43 (diff)
downloadmariadb-git-9cd5d2e12ff38d815a37da0bdb218d19181ca7b9.tar.gz
select.result, mysqldump-max.result:
after merge fix. range.result: fixing result accordingly , cast.result: after merge fix range.test: Avoid SELECT'ing of BINARY column not to output 0x00 bytes. mysql-test/t/range.test: Avoid SELECT'ing of BINARY column not to output 0x00 bytes. mysql-test/r/cast.result: after merge fix mysql-test/r/mysqldump-max.result: after merge fix. mysql-test/r/range.result: fixing result accordingly , mysql-test/r/select.result: after merge fix.
Diffstat (limited to 'mysql-test/t')
-rw-r--r--mysql-test/t/range.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/range.test b/mysql-test/t/range.test
index 89376d33f61..f6493bac244 100644
--- a/mysql-test/t/range.test
+++ b/mysql-test/t/range.test
@@ -628,6 +628,6 @@ explain select * from t2 where a = 'a' or a='a ';
update t1 set a='b' where a<>'a';
--replace_column 9 #
explain select * from t1 where a not between 'b' and 'b';
-select * from t1 where a not between 'b' and 'b';
+select a, hex(filler) from t1 where a not between 'b' and 'b';
drop table t1,t2,t3;