Note (Code 1003): /* select#1 */ select `dt`.`id` AS `id`,`dt`.`notes` AS `notes` from (/* select#2 */ select 1 AS `id`,'test' AS `notes` from `test`.`t1` union /* select#3 */ select 1 AS `id`,'test' AS `notes` from `test`.`t1`) `dt` where `dt`.`id` = 1
MariaDB [test]>
MariaDB [test]> analyze format=json select dt.* from (select * from t1 union select * from t1) dt WHERE id = 1;
Note (Code 1003): /* select#1 */ select `dt`.`id` AS `id`,`dt`.`notes` AS `notes` from (/* select#2 */ select 1 AS `id`,'test' AS `notes` from `test`.`t1` union /* select#3 */ select 1 AS `id`,'test' AS `notes` from `test`.`t1`) `dt` where `dt`.`id` = 1
Alice Sherepa
added a comment - - edited Thanks! I repeated as described on 11.0-11.5:
CREATE TABLE t1 ( id int NOT NULL PRIMARY KEY , notes TEXT NOT NULL );
INSERT INTO t1 VALUES (1, 'test' );
select dt.* from ( select * from t1 union select * from t1) dt WHERE id = 1;
drop table t1;
MariaDB [test]> CREATE TABLE t1 ( id int NOT NULL auto_increment PRIMARY KEY, notes TEXT NOT NULL);
Query OK, 0 rows affected (0,041 sec)
MariaDB [test]> INSERT INTO t1 VALUES (1, 'test');
Query OK, 1 row affected (0,005 sec)
MariaDB [test]> select dt.* from (select * from t1 union select * from t1) dt WHERE id = 1;
Empty set (0,007 sec)
MariaDB [test]> select dt.* from (select * from t1 union select * from t1) dt WHERE id >= 1;
+----+-------+
| id | notes |
+----+-------+
| 1 | test |
+----+-------+
1 row in set (0,006 sec)
MariaDB [test]> explain extended select dt.* from (select * from t1 union select * from t1) dt WHERE id = 1;
+------+--------------+------------+-------+---------------+--------------+---------+-------+------+----------+-------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | filtered | Extra |
+------+--------------+------------+-------+---------------+--------------+---------+-------+------+----------+-------+
| 1 | PRIMARY | <derived2> | ref | distinct_key | distinct_key | 4 | const | 1 | 100.00 | |
| 2 | DERIVED | t1 | const | PRIMARY | PRIMARY | 4 | const | 1 | 100.00 | |
| 3 | UNION | t1 | const | PRIMARY | PRIMARY | 4 | const | 1 | 100.00 | |
| NULL | UNION RESULT | <union2,3> | ALL | NULL | NULL | NULL | NULL | NULL | NULL | |
+------+--------------+------------+-------+---------------+--------------+---------+-------+------+----------+-------+
4 rows in set, 1 warning (0,005 sec)
Note (Code 1003): /* select#1 */ select `dt`.`id` AS `id`,`dt`.`notes` AS `notes` from (/* select#2 */ select 1 AS `id`,'test' AS `notes` from `test`.`t1` union /* select#3 */ select 1 AS `id`,'test' AS `notes` from `test`.`t1`) `dt` where `dt`.`id` = 1
MariaDB [test]>
MariaDB [test]> analyze format=json select dt.* from (select * from t1 union select * from t1) dt WHERE id = 1;
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| ANALYZE |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| {
"query_optimization": {
"r_total_time_ms": 2.874248112
},
"query_block": {
"select_id": 1,
"cost": 0.001229029,
"r_loops": 1,
"r_total_time_ms": 1.868339105,
"nested_loop": [
{
"table": {
"table_name": "<derived2>",
"access_type": "ref",
"possible_keys": ["distinct_key"],
"key": "distinct_key",
"key_length": "4",
"used_key_parts": ["id"],
"ref": ["const"],
"loops": 1,
"r_loops": 1,
"rows": 1,
"r_rows": 0,
"cost": 0.001229029,
"r_table_time_ms": 0.182791515,
"r_other_time_ms": 0.041447163,
"filtered": 100,
"r_filtered": 100,
"materialized": {
"query_block": {
"union_result": {
"table_name": "<union2,3>",
"access_type": "ALL",
"r_loops": 1,
"r_rows": 1,
"query_specifications": [
{
"query_block": {
"select_id": 2,
"r_loops": 1,
"r_total_time_ms": 0.288899226,
"nested_loop": [
{
"table": {
"table_name": "t1",
"access_type": "const",
"possible_keys": ["PRIMARY"],
"key": "PRIMARY",
"key_length": "4",
"used_key_parts": ["id"],
"ref": ["const"],
"r_loops": 0,
"rows": 1,
"r_rows": null,
"r_engine_stats": {
"pages_accessed": 1
},
"filtered": 100,
"r_filtered": null
}
}
]
}
},
{
"query_block": {
"select_id": 3,
"operation": "UNION",
"r_loops": 1,
"r_total_time_ms": 0.154588559,
"nested_loop": [
{
"table": {
"table_name": "t1",
"access_type": "const",
"possible_keys": ["PRIMARY"],
"key": "PRIMARY",
"key_length": "4",
"used_key_parts": ["id"],
"ref": ["const"],
"r_loops": 0,
"rows": 1,
"r_rows": null,
"r_engine_stats": {
"pages_accessed": 1
},
"filtered": 100,
"r_filtered": null
}
}
]
}
}
]
}
}
}
}
}
]
}
} |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0,007 sec)
on 10.5-10.11 : note ALL vs ref,distinct_key
MariaDB [test]> select dt.*from (select * from t1 union select * from t1) dt WHERE id = 1;
+----+-------+
| id | notes |
+----+-------+
| 1 | test |
+----+-------+
1 row in set (0,007 sec)
MariaDB [test]> explain extended select dt.*from (select * from t1 union select * from t1) dt WHERE id = 1;
+------+--------------+------------+-------+---------------+---------+---------+-------+------+----------+-------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | filtered | Extra |
+------+--------------+------------+-------+---------------+---------+---------+-------+------+----------+-------------+
| 1 | PRIMARY | <derived2> | ALL | NULL | NULL | NULL | NULL | 2 | 100.00 | Using where |
| 2 | DERIVED | t1 | const | PRIMARY | PRIMARY | 4 | const | 1 | 100.00 | |
| 3 | UNION | t1 | const | PRIMARY | PRIMARY | 4 | const | 1 | 100.00 | |
| NULL | UNION RESULT | <union2,3> | ALL | NULL | NULL | NULL | NULL | NULL | NULL | |
+------+--------------+------------+-------+---------------+---------+---------+-------+------+----------+-------------+
4 rows in set, 1 warning (0,006 sec)
Note (Code 1003): /* select#1 */ select `dt`.`id` AS `id`,`dt`.`notes` AS `notes` from (/* select#2 */ select 1 AS `id`,'test' AS `notes` from `test`.`t1` union /* select#3 */ select 1 AS `id`,'test' AS `notes` from `test`.`t1`) `dt` where `dt`.`id` = 1
Do you have any idea about when we can expect a fix? Is it days, or weeks or more?
Harold
added a comment - Thanks for the quick response and quick analysis!
Do you have any idea about when we can expect a fix? Is it days, or weeks or more?
The derived table `dt` is materialized, and a unique key is created over all columns to ensure only distinct values are placed to the result (because there is UNION command but not UNION ALL). This key is created in a special mode HA_UNIQUE_HASH to support BLOBs (TEXT in the case above).
Later in `best_access_path` the optimizer chooses this index to retrieve values from the derived table, although such type of index cannot be used for data retrieval. This is why no data is fetched from `dt`.
Oleg Smirnov
added a comment - The derived table `dt` is materialized, and a unique key is created over all columns to ensure only distinct values are placed to the result (because there is UNION command but not UNION ALL). This key is created in a special mode HA_UNIQUE_HASH to support BLOBs (TEXT in the case above).
Later in `best_access_path` the optimizer chooses this index to retrieve values from the derived table, although such type of index cannot be used for data retrieval. This is why no data is fetched from `dt`.
I'm wondering if there are any other parts of the query that could try to use this index...
test_if_skip_sort_order() won't use it because it the blob field has empty Field::part_of_sortkey...
Ok, there are also other questions, see the PR.
Sergei Petrunia
added a comment - - edited I'm wondering if there are any other parts of the query that could try to use this index...
test_if_skip_sort_order() won't use it because it the blob field has empty Field::part_of_sortkey...
Ok, there are also other questions, see the PR.
Thanks! I repeated as described on 11.0-11.5:
MariaDB [test]> CREATE TABLE t1 ( id int NOT NULL auto_increment PRIMARY KEY, notes TEXT NOT NULL);
Query OK, 0 rows affected (0,041 sec)
MariaDB [test]> INSERT INTO t1 VALUES (1, 'test');
Query OK, 1 row affected (0,005 sec)
MariaDB [test]> select dt.* from (select * from t1 union select * from t1) dt WHERE id = 1;
Empty set (0,007 sec)
MariaDB [test]> select dt.* from (select * from t1 union select * from t1) dt WHERE id >= 1;
+----+-------+
| id | notes |
+----+-------+
| 1 | test |
+----+-------+
1 row in set (0,006 sec)
MariaDB [test]> explain extended select dt.* from (select * from t1 union select * from t1) dt WHERE id = 1;
+------+--------------+------------+-------+---------------+--------------+---------+-------+------+----------+-------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | filtered | Extra |
+------+--------------+------------+-------+---------------+--------------+---------+-------+------+----------+-------+
| 1 | PRIMARY | <derived2> | ref | distinct_key | distinct_key | 4 | const | 1 | 100.00 | |
| 2 | DERIVED | t1 | const | PRIMARY | PRIMARY | 4 | const | 1 | 100.00 | |
| 3 | UNION | t1 | const | PRIMARY | PRIMARY | 4 | const | 1 | 100.00 | |
| NULL | UNION RESULT | <union2,3> | ALL | NULL | NULL | NULL | NULL | NULL | NULL | |
+------+--------------+------------+-------+---------------+--------------+---------+-------+------+----------+-------+
4 rows in set, 1 warning (0,005 sec)
Note (Code 1003): /* select#1 */ select `dt`.`id` AS `id`,`dt`.`notes` AS `notes` from (/* select#2 */ select 1 AS `id`,'test' AS `notes` from `test`.`t1` union /* select#3 */ select 1 AS `id`,'test' AS `notes` from `test`.`t1`) `dt` where `dt`.`id` = 1
MariaDB [test]>
MariaDB [test]> analyze format=json select dt.* from (select * from t1 union select * from t1) dt WHERE id = 1;
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| ANALYZE |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| {
"query_optimization": {
"r_total_time_ms": 2.874248112
},
"query_block": {
"select_id": 1,
"cost": 0.001229029,
"r_loops": 1,
"r_total_time_ms": 1.868339105,
"nested_loop": [
{
"table": {
"table_name": "<derived2>",
"access_type": "ref",
"possible_keys": ["distinct_key"],
"key": "distinct_key",
"key_length": "4",
"used_key_parts": ["id"],
"ref": ["const"],
"loops": 1,
"r_loops": 1,
"rows": 1,
"r_rows": 0,
"cost": 0.001229029,
"r_table_time_ms": 0.182791515,
"r_other_time_ms": 0.041447163,
"filtered": 100,
"r_filtered": 100,
"materialized": {
"query_block": {
"union_result": {
"table_name": "<union2,3>",
"access_type": "ALL",
"r_loops": 1,
"r_rows": 1,
"query_specifications": [
{
"query_block": {
"select_id": 2,
"r_loops": 1,
"r_total_time_ms": 0.288899226,
"nested_loop": [
{
"table": {
"table_name": "t1",
"access_type": "const",
"possible_keys": ["PRIMARY"],
"key": "PRIMARY",
"key_length": "4",
"used_key_parts": ["id"],
"ref": ["const"],
"r_loops": 0,
"rows": 1,
"r_rows": null,
"r_engine_stats": {
"pages_accessed": 1
},
"filtered": 100,
"r_filtered": null
}
}
]
}
},
{
"query_block": {
"select_id": 3,
"operation": "UNION",
"r_loops": 1,
"r_total_time_ms": 0.154588559,
"nested_loop": [
{
"table": {
"table_name": "t1",
"access_type": "const",
"possible_keys": ["PRIMARY"],
"key": "PRIMARY",
"key_length": "4",
"used_key_parts": ["id"],
"ref": ["const"],
"r_loops": 0,
"rows": 1,
"r_rows": null,
"r_engine_stats": {
"pages_accessed": 1
},
"filtered": 100,
"r_filtered": null
}
}
]
}
}
]
}
}
}
}
}
]
}
} |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0,007 sec)
on 10.5-10.11 : note ALL vs ref,distinct_key
MariaDB [test]> select dt.*from (select * from t1 union select * from t1) dt WHERE id = 1;
+----+-------+
| id | notes |
+----+-------+
| 1 | test |
+----+-------+
1 row in set (0,007 sec)
MariaDB [test]> explain extended select dt.*from (select * from t1 union select * from t1) dt WHERE id = 1;
+------+--------------+------------+-------+---------------+---------+---------+-------+------+----------+-------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | filtered | Extra |
+------+--------------+------------+-------+---------------+---------+---------+-------+------+----------+-------------+
| 1 | PRIMARY | <derived2> | ALL | NULL | NULL | NULL | NULL | 2 | 100.00 | Using where |
| 2 | DERIVED | t1 | const | PRIMARY | PRIMARY | 4 | const | 1 | 100.00 | |
| 3 | UNION | t1 | const | PRIMARY | PRIMARY | 4 | const | 1 | 100.00 | |
| NULL | UNION RESULT | <union2,3> | ALL | NULL | NULL | NULL | NULL | NULL | NULL | |
+------+--------------+------------+-------+---------------+---------+---------+-------+------+----------+-------------+
4 rows in set, 1 warning (0,006 sec)
Note (Code 1003): /* select#1 */ select `dt`.`id` AS `id`,`dt`.`notes` AS `notes` from (/* select#2 */ select 1 AS `id`,'test' AS `notes` from `test`.`t1` union /* select#3 */ select 1 AS `id`,'test' AS `notes` from `test`.`t1`) `dt` where `dt`.`id` = 1