Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
create table t1 (a int primary key, b int);
insert t1 values (1,1),(2,2),(3,3);
select * from t1 where a in ('1', '2.1');
-------+
| a | b |
-------+
| 1 | 1 |
| 2 | 2 |
-------+