diff options
author | unknown <monty@mashka.mysql.fi> | 2002-09-18 02:21:29 +0300 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2002-09-18 02:21:29 +0300 |
commit | aef675029f198c61a1a1c46dbb68890f705d40db (patch) | |
tree | a902843afe48087da439aa3786b69dca86f00349 /mysql-test/r/binary.result | |
parent | 081023e8fd9a5ab196ca56d55ea256f33ea76f3f (diff) | |
download | mariadb-git-aef675029f198c61a1a1c46dbb68890f705d40db.tar.gz |
Update mysql-test results after merge
include/my_sys.h:
Portability fix
include/sslopt-longopts.h:
Better help for --ssl
mysql-test/r/binary.result:
Update results after merge
mysys/my_malloc.c:
Portability fix
sql/udf_example.cc:
Use longlong instead of 'long long' to make things works on windows
Diffstat (limited to 'mysql-test/r/binary.result')
-rw-r--r-- | mysql-test/r/binary.result | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/r/binary.result b/mysql-test/r/binary.result index 94b06ee4d28..325accf00e7 100644 --- a/mysql-test/r/binary.result +++ b/mysql-test/r/binary.result @@ -54,3 +54,13 @@ select * from t1 where b="hello"; a b hello hello drop table t1; +create table t1 (b char(8)); +insert into t1 values(NULL); +select b from t1 where binary b like ''; +b +select b from t1 group by binary b like ''; +b +NULL +select b from t1 having binary b like ''; +b +drop table t1; |