createtable t1 (p intprimarykey, a int, b int, unique(a),key(b)) engine=innodb;
insertinto t1 select seq,seq,seq/10 from seq_1_to_100000;
analyze table t1;
explain select straight_join count(*) from t1 as t3, t1, t1 as t2 where t1.a=t2.a and t2.b between 1 and 1500;
set @now=unix_timestamp(now(6));
select straight_join count(*) from t1 as t3, t1, t1 as t2 where t1.a=t2.a and t2.b between 1 and 1500;
select unix_timestamp(now(6))-@now;
droptable t1;
becomes 15% slower after the patch
Sergei Golubchik
added a comment - The following test case
--source include/have_innodb.inc
--source include/have_sequence.inc
create table t1 (p int primary key , a int , b int , unique (a), key (b)) engine=innodb;
insert into t1 select seq,seq,seq/10 from seq_1_to_100000;
analyze table t1;
explain select straight_join count (*) from t1 as t3, t1, t1 as t2 where t1.a=t2.a and t2.b between 1 and 1500;
set @now=unix_timestamp(now(6));
select straight_join count (*) from t1 as t3, t1, t1 as t2 where t1.a=t2.a and t2.b between 1 and 1500;
select unix_timestamp(now(6))-@now;
drop table t1;
becomes 15% slower after the patch
A testcase like just like the above one from serg where original code (before the patch for this MDEV) will not use rowid filter, despite that the query plan is chooses is the same in all other aspects:
(This demonstrates a bug that eq_ref code uses the value of keyread_tmp that is left over from the previously considered index, whatever it was.)
createtable t1 (
p intprimarykey,
badcol1 int,
badcol2 int,
a int,
b int,
unique(badcol1, badcol2),
unique(a),
key(b)
) engine=innodb;
insertinto t1 select seq, (seq/30000), seq, seq,seq/10 from seq_1_to_100000;
analyze table t1;
explain
select straight_join count(*)
from
t1 as t3, t1, t1 as t2
where
t1.a=t2.a and
t2.b between 1 and 1500 and
t1.badcol1=t2.badcol1 ;
Sergei Petrunia
added a comment - - edited A testcase like just like the above one from serg where original code (before the patch for this MDEV) will not use rowid filter, despite that the query plan is chooses is the same in all other aspects:
(This demonstrates a bug that eq_ref code uses the value of keyread_tmp that is left over from the previously considered index, whatever it was.)
create table t1 (
p int primary key ,
badcol1 int ,
badcol2 int ,
a int ,
b int ,
unique (badcol1, badcol2),
unique (a),
key (b)
) engine=innodb;
insert into t1 select seq, (seq/30000), seq, seq,seq/10 from seq_1_to_100000;
analyze table t1;
explain
select straight_join count (*)
from
t1 as t3, t1, t1 as t2
where
t1.a=t2.a and
t2.b between 1 and 1500 and
t1.badcol1=t2.badcol1 ;
The change in subselect2.result looks odd. I've investigated - it has nothing
to do with rowid filtering code. The ref|filter access was estimated as eq_ref|filter (and it should have been eq_ref|filter). Filed MDEV-30476 with all the details.
Sergei Petrunia
added a comment - Part#2 patch:
https://github.com/MariaDB/server/commit/678f2220cc25b3495f1f16fe2732e49a0cd120f8
The change in subselect2.result looks odd. I've investigated - it has nothing
to do with rowid filtering code. The ref|filter access was estimated as eq_ref|filter (and it should have been eq_ref|filter). Filed MDEV-30476 with all the details.
My poking around in the related code was logged as
MDEV-30142.