Details
Description
A simplified testcase without any customer data:
create function myfunc(a int) returns int DETERMINISTIC return (a+1); |
|
create table t1 ( |
pk int primary key, |
a int, |
b int, |
key(a) |
);
|
insert into t1 select seq,seq,seq from seq_1_to_1000; |
create view v1 as |
select
|
t1.a as col1, |
myfunc(t1.b) as col2 |
from
|
t1;
|
|
create view v2 as |
select
|
t1.a as col1, |
myfunc(t1.b) as col2 |
from
|
t1;
|
create view v3 as |
select col2, col1 from v1 |
union all |
select col2, col1 from v2; |
I get this both on 10.5.11 and 10.2.14:
explain select * from v3 where col1=123; |
+------+-------------+------------+------+---------------+------+---------+-------+------+-------------+ |
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | |
+------+-------------+------------+------+---------------+------+---------+-------+------+-------------+ |
| 1 | PRIMARY | <derived2> | ALL | NULL | NULL | NULL | NULL | 2 | Using where | |
| 2 | DERIVED | t1 | ref | a | a | 5 | const | 1 | |
|
| 3 | UNION | t1 | ref | a | a | 5 | const | 1 | | |
+------+-------------+------------+------+---------------+------+---------+-------+------+-------------+ |
add col2=321 into the WHERE clause and on 10.5.11 I get this:
explain select * from v3 where col1=123 and col2=321; |
+------+-------------+------------+------+---------------+------+---------+------+------+-------------+ |
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | |
+------+-------------+------------+------+---------------+------+---------+------+------+-------------+ |
| 1 | PRIMARY | <derived2> | ALL | NULL | NULL | NULL | NULL | 2000 | Using where | |
| 2 | DERIVED | t1 | ALL | NULL | NULL | NULL | NULL | 1000 | | |
| 3 | UNION | t1 | ALL | NULL | NULL | NULL | NULL | 1000 | | |
+------+-------------+------------+------+---------------+------+---------+------+------+-------------+ |
while on 10.2.14 table t1 is still accessed through ref access.
Attachments
Activity
Field | Original Value | New Value |
---|---|---|
Link | This issue is part of MENT-1219 [ MENT-1219 ] |
Status | Open [ 1 ] | In Progress [ 3 ] |
Priority | Major [ 3 ] | Critical [ 2 ] |
Assignee | Sergei Petrunia [ psergey ] | Igor Babaev [ igor ] |
Status | In Progress [ 3 ] | In Review [ 10002 ] |
Description |
A simplified testcase without any customer data: {code:sql} create function myfunc(a int) returns int DETERMINISTIC return (a+1); create table t1 ( pk int primary key, a int, b int, key(a) ); insert into t1 select seq,seq,seq from seq_1_to_1000; {code} {code:sql} create view v1 as select t1.a as col1, myfunc(t1.b) as col2 from t1; create view v2 as select t1.a as col1, myfunc(t1.b) as col2 from t1; {code} {code:sql} create view v3 as select col2, col1 from v1 union all select col2, col1 from v2; {code} I get this both on 10.5.11 and 10.2.14: {code:sql} explain select * from v3 where col1=123; +------+-------------+------------+------+---------------+------+---------+-------+------+-------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +------+-------------+------------+------+---------------+------+---------+-------+------+-------------+ | 1 | PRIMARY | <derived2> | ALL | NULL | NULL | NULL | NULL | 2 | Using where | | 2 | DERIVED | t1 | ref | a | a | 5 | const | 1 | | | 3 | UNION | t1 | ref | a | a | 5 | const | 1 | | +------+-------------+------------+------+---------------+------+---------+-------+------+-------------+ {code} add col2=321 into the WHERE clause and on 10.5.11 I get this: {code:sql} explain select * from v3 where col1=123 and col2=321; +------+-------------+------------+------+---------------+------+---------+------+------+-------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +------+-------------+------------+------+---------------+------+---------+------+------+-------------+ | 1 | PRIMARY | <derived2> | ALL | NULL | NULL | NULL | NULL | 2000 | Using where | | 2 | DERIVED | t1 | ALL | NULL | NULL | NULL | NULL | 1000 | | | 3 | UNION | t1 | ALL | NULL | NULL | NULL | NULL | 1000 | | +------+-------------+------------+------+---------------+------+---------+------+------+-------------+ {code} while on 10.2.14 table t1 is still accessed through ref access. |
A simplified testcase without any customer data:
{code:sql} create function myfunc(a int) returns int DETERMINISTIC return (a+1); create table t1 ( pk int primary key, a int, b int, key(a) ); insert into t1 select seq,seq,seq from seq_1_to_1000; {code} {code:sql} create view v1 as select t1.a as col1, myfunc(t1.b) as col2 from t1; create view v2 as select t1.a as col1, myfunc(t1.b) as col2 from t1; {code} {code:sql} create view v3 as select col2, col1 from v1 union all select col2, col1 from v2; {code} I get this both on 10.5.11 and 10.2.14: {code:sql} explain select * from v3 where col1=123; +------+-------------+------------+------+---------------+------+---------+-------+------+-------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +------+-------------+------------+------+---------------+------+---------+-------+------+-------------+ | 1 | PRIMARY | <derived2> | ALL | NULL | NULL | NULL | NULL | 2 | Using where | | 2 | DERIVED | t1 | ref | a | a | 5 | const | 1 | | | 3 | UNION | t1 | ref | a | a | 5 | const | 1 | | +------+-------------+------------+------+---------------+------+---------+-------+------+-------------+ {code} add col2=321 into the WHERE clause and on 10.5.11 I get this: {code:sql} explain select * from v3 where col1=123 and col2=321; +------+-------------+------------+------+---------------+------+---------+------+------+-------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +------+-------------+------------+------+---------------+------+---------+------+------+-------------+ | 1 | PRIMARY | <derived2> | ALL | NULL | NULL | NULL | NULL | 2000 | Using where | | 2 | DERIVED | t1 | ALL | NULL | NULL | NULL | NULL | 1000 | | | 3 | UNION | t1 | ALL | NULL | NULL | NULL | NULL | 1000 | | +------+-------------+------------+------+---------------+------+---------+------+------+-------------+ {code} while on 10.2.14 table t1 is still accessed through ref access. |
Link | This issue is blocked by TODO-3020 [ TODO-3020 ] |
Link | This issue causes TODO-3020 [ TODO-3020 ] |
Status | In Review [ 10002 ] | Stalled [ 10000 ] |
Link | This issue causes TODO-3020 [ TODO-3020 ] |
Assignee | Igor Babaev [ igor ] | Sergei Petrunia [ psergey ] |
Link | This issue blocks TODO-3020 [ TODO-3020 ] |
Link | This issue is blocked by TODO-3020 [ TODO-3020 ] |
Fix Version/s | 10.2.40 [ 26027 ] | |
Fix Version/s | 10.3.31 [ 26028 ] | |
Fix Version/s | 10.4.21 [ 26030 ] | |
Fix Version/s | 10.5.12 [ 26025 ] | |
Fix Version/s | 10.6.3 [ 25904 ] | |
Fix Version/s | 10.5 [ 23123 ] | |
Resolution | Fixed [ 1 ] | |
Status | Stalled [ 10000 ] | Closed [ 6 ] |
Link | This issue blocks TODO-3077 [ TODO-3077 ] |
Workflow | MariaDB v3 [ 122858 ] | MariaDB v4 [ 159421 ] |
Zendesk Related Tickets | 179395 |