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

This commit is contained in:
monty@mashka.mysql.fi
2002-09-18 02:21:29 +03:00
parent 70b1d53883
commit dfd0f82b93
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;