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

a small bug fix

This commit is contained in:
unknown
2002-09-04 15:24:27 +03:00
parent baa284a799
commit 909aaefa89
4 changed files with 13 additions and 1 deletions

View File

@ -136,3 +136,8 @@ t1 CREATE TABLE `t1` (
drop table t1;
create table t1 select if(1,'1','0'), month("2002-08-02");
drop table t1;
create table t1 select if('2002'='2002','Y','N');
select * from t1;
if('2002'='2002','Y','N')
Y
drop table if exists t1;