diff options
author | unknown <monty@mysql.com> | 2004-09-09 14:55:28 +0300 |
---|---|---|
committer | unknown <monty@mysql.com> | 2004-09-09 14:55:28 +0300 |
commit | bc787254247cb66a5e1adc0af6834c10737ecc6e (patch) | |
tree | 368687b45835bc7b5a71ef90de23cb752f4a1865 /mysql-test/r/func_if.result | |
parent | e18b7ea95942cb8ab0b31d453929dde50dcf3756 (diff) | |
download | mariadb-git-bc787254247cb66a5e1adc0af6834c10737ecc6e.tar.gz |
Update after merge
Diffstat (limited to 'mysql-test/r/func_if.result')
-rw-r--r-- | mysql-test/r/func_if.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/func_if.result b/mysql-test/r/func_if.result index f0445199744..83e103fe57d 100644 --- a/mysql-test/r/func_if.result +++ b/mysql-test/r/func_if.result @@ -43,7 +43,7 @@ explain extended select if(u=1,st,binary st) s from t1 where st like "%a%" order id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE t1 ALL NULL NULL NULL NULL 7 Using where; Using filesort Warnings: -Note 1003 select if((`test`.`t1`.`u` = 1),`test`.`t1`.`st`,(`test`.`t1`.`st` collate BINARY)) AS `s` from `test`.`t1` where (`test`.`t1`.`st` like _latin1'%a%') order by if((`test`.`t1`.`u` = 1),`test`.`t1`.`st`,(`test`.`t1`.`st` collate BINARY)) +Note 1003 select if((`test`.`t1`.`u` = 1),`test`.`t1`.`st`,cast(`test`.`t1`.`st` as char charset binary)) AS `s` from `test`.`t1` where (`test`.`t1`.`st` like _latin1'%a%') order by if((`test`.`t1`.`u` = 1),`test`.`t1`.`st`,cast(`test`.`t1`.`st` as char charset binary)) select nullif(u=0, 'test') from t1; nullif(u=0, 'test') NULL |