Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Duplicate
-
Affects Version/s: 10.4
-
Fix Version/s: N/A
-
Component/s: Optimizer
-
Labels:
Description
create table t1(a int);
|
insert into t1 values (2),(3);
|
set @@in_predicate_conversion_threshold= 2;
|
set optimizer_trace=1;
|
select * from t1 where a in (1,2);
|
select * from information_schema.optimizer_trace;
|
drop table t1;
|