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

Merge 10.4 into 10.5

This commit is contained in:
Marko Mäkelä
2021-06-04 10:07:29 +03:00
8 changed files with 141 additions and 14 deletions

View File

@ -152,3 +152,44 @@ eval set statement optimizer_switch='split_materialized=on' for $query;
DROP TABLE t1, t2;
--echo #
--echo # Bug mdev-25714: usage non-splitting covering index is cheaper than
--echo # usage of the best splitting index for one group
--echo #
create table t1 (
id int not null, itemid int not null, index idx (itemid)
) engine=innodb;
insert into t1 values (1, 2), (2,2), (4,2), (4,2), (0,3), (3,3);
create table t2 (id int not null) engine=innodb;
insert into t2 values (2);
create table t3 (
id int not null, itemid int not null, userid int not null, primary key (id),
index idx1 (userid, itemid), index idx2 (itemid)
) engine innodb;
insert into t3 values (1,1,1), (2,1,1), (3,2,1), (4,2,1), (5,3,1);
set use_stat_tables='never';
set optimizer_use_condition_selectivity=1;
analyze table t1,t2,t3;
let $q=
select t1.id, t1.itemid, dt.id, t2.id
from t1,
(select itemid, max(id) as id from t3 where userid = 1 group by itemid) dt,
t2
where t1.id = dt.id and t1.itemid = dt.itemid and t2.id=t1.itemid;
set optimizer_switch='split_materialized=on';
eval explain $q;
eval $q;
set optimizer_switch='split_materialized=off';
eval explain $q;
eval $q;
drop table t1,t2,t3;
set optimizer_switch='split_materialized=default';
set use_stat_tables=default;
set optimizer_use_condition_selectivity=default;
--echo # End of 10.3 tests