1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

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
This commit is contained in:
unknown
2002-09-18 02:21:29 +03:00
parent 081023e8fd
commit aef675029f
5 changed files with 44 additions and 27 deletions

View File

@ -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;