问题描述 问题分析: 问题解决 问题描述 create table t1 ( id int auto_increment primary key , a int , b int , c int , v varchar ( 1000 ), key iabc ( a , b , c ), key ic ( c )) engin...
问题描述 复现case 问题分析 问题解决 问题描述 bug 触发条件如下: 优化器先选择了 where 条件中字段的索引,该索引过滤性较好; SQL 中必须有 order by limit 从而引导优化器尝试使用 order by 字段上的索引进行优化,最终因代价问题没有成功。 复现case 表结构 create table t...