mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge moonbone.local:/home/evgen/bk-trees/mysql-4.1-opt
into moonbone.local:/work/tmp_merge-5.0-opt-mysql mysql-test/r/cast.result: Auto merged mysql-test/r/func_str.result: Auto merged mysql-test/t/func_str.test: Auto merged sql/item_cmpfunc.cc: Auto merged sql/item_cmpfunc.h: Auto merged sql/item_strfunc.cc: Auto merged
This commit is contained in:
@ -1023,6 +1023,21 @@ NULL
|
||||
select ifnull(load_file("lkjlkj"),"it's null");
|
||||
ifnull(load_file("lkjlkj"),"it's null")
|
||||
it's null
|
||||
create table t1 (f1 varchar(4), f2 varchar(64), unique key k1 (f1,f2));
|
||||
insert into t1 values ( 'test',md5('test')), ('test', sha('test'));
|
||||
select * from t1 where f1='test' and (f2= md5("test") or f2= md5("TEST"));
|
||||
f1 f2
|
||||
test 098f6bcd4621d373cade4e832627b4f6
|
||||
select * from t1 where f1='test' and (f2= md5("TEST") or f2= md5("test"));
|
||||
f1 f2
|
||||
test 098f6bcd4621d373cade4e832627b4f6
|
||||
select * from t1 where f1='test' and (f2= sha("test") or f2= sha("TEST"));
|
||||
f1 f2
|
||||
test a94a8fe5ccb19ba61c4c0873d391e987982fbbd3
|
||||
select * from t1 where f1='test' and (f2= sha("TEST") or f2= sha("test"));
|
||||
f1 f2
|
||||
test a94a8fe5ccb19ba61c4c0873d391e987982fbbd3
|
||||
drop table t1;
|
||||
End of 4.1 tests
|
||||
create table t1 (d decimal default null);
|
||||
insert into t1 values (null);
|
||||
|
Reference in New Issue
Block a user