30
30
# Bug #5540: a problem with double type
33
create table t1 (a char(4), b double, c date, d int);
33
create table t1 (a char(4), b double, c date, d tinyint(4));
34
34
insert into t1 values ('AAAA', 105, '2003-03-01', 1);
35
35
select * from t1 where concat(A,C,B,D) = 'AAAA2003-03-011051';