summaryrefslogtreecommitdiff
path: root/mysql-test/r/range.result
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
commit6bf7a0f3c975cbce669545566a768e6d0fe88b1d (patch)
treef31fc507ab0b909aa996135d030561785adf4fe1 /mysql-test/r/range.result
parent842fd992f6d6b2a9575e8a7dd16f374fb6842338 (diff)
downloadmariadb-git-6bf7a0f3c975cbce669545566a768e6d0fe88b1d.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/r/range.result')
-rw-r--r--mysql-test/r/range.result6
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/r/range.result b/mysql-test/r/range.result
index 6dedd020249..f6b7409ea6a 100644
--- a/mysql-test/r/range.result
+++ b/mysql-test/r/range.result
@@ -813,7 +813,7 @@ update t1 set a='b' where a<>'a';
explain select * from t1 where a not between 'b' and 'b';
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range a a 13 NULL # Using where
-select * from t1 where a not between 'b' and 'b';
-a filler
-a
+select a, hex(filler) from t1 where a not between 'b' and 'b';
+a hex(filler)
+a 0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
drop table t1,t2,t3;