Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.4(EOL)
-
None
Description
create table t1 (start_date date, end_date date, filler char(100), key(start_date, end_date)) ; |
source ~/fill-test.sql
|
create table t1 (start_date date, end_date date, filler char(100), key(start_date, end_date)) ; |
insert into t1 select date_add(now(), interval a day), date_add(now(), interval (a+7) day), 'data' from one_k; |
Query OK, 1000 rows affected, 2000 warnings (0.40 sec) |
Records: 1000 Duplicates: 0 Warnings: 2000
|
mysql> set optimizer_trace=1;
|
mysql> explain format=json select * from t1 force index(start_date) where start_date >= '2019-02-10' and end_date <'2019-04-01';
|
| {
|
"query_block": {
|
"select_id": 1,
|
"table": {
|
"table_name": "t1",
|
"access_type": "range",
|
"possible_keys": ["start_date"],
|
"key": "start_date",
|
"key_length": "8",
|
"used_key_parts": ["start_date", "end_date"],
|
"rows": 1000,
|
"filtered": 100,
|
"index_condition": "t1.start_date >= '2019-02-10' and t1.end_date < '2019-04-01'"
|
}
|
}
|
}
|
Note that
"used_key_parts": ["start_date", "end_date"],
|
But due to a bug in append_range_all_keyparts near is_singlepoint() call the
printed range uses one key part:
"range_scan_alternatives": [
|
{
|
"index": "start_date",
|
"ranges": ["0x4ac60f <= start_date"],
|
"rowid_ordered": false,
|
"using_mrr": false,
|
"index_only": false,
|
"rows": 1000,
|
"cost": 1252.4,
|
"chosen": true
|
}
|
],
|
The fact that date is printed as 0x4ac60f is a separate bug and should also be
fixed.
Attachments
Issue Links
- causes
-
MDEV-19634 Assertion `0' failed in row_sel_convert_mysql_key_to_innobase, [Warning] InnoDB: Using a partial-field key prefix in search
-
- Closed
-
- relates to
-
MDEV-6111 optimizer trace
-
- Closed
-
Activity
Status | Open [ 1 ] | In Progress [ 3 ] |
Assignee | Varun Gupta [ varun ] | Sergei Petrunia [ psergey ] |
Status | In Progress [ 3 ] | In Review [ 10002 ] |
Assignee | Sergei Petrunia [ psergey ] | Varun Gupta [ varun ] |
Status | In Review [ 10002 ] | Stalled [ 10000 ] |
Status | Stalled [ 10000 ] | In Progress [ 3 ] |
Assignee | Varun Gupta [ varun ] | Sergei Petrunia [ psergey ] |
Status | In Progress [ 3 ] | In Review [ 10002 ] |
Assignee | Sergei Petrunia [ psergey ] | Varun Gupta [ varun ] |
Status | In Review [ 10002 ] | Stalled [ 10000 ] |
Status | Stalled [ 10000 ] | In Progress [ 3 ] |
Assignee | Varun Gupta [ varun ] | Sergei Petrunia [ psergey ] |
Status | In Progress [ 3 ] | In Review [ 10002 ] |
Assignee | Sergei Petrunia [ psergey ] | Varun Gupta [ varun ] |
Status | In Review [ 10002 ] | Stalled [ 10000 ] |
Status | Stalled [ 10000 ] | In Progress [ 3 ] |
Comment |
[ Patch
http://lists.askmonty.org/pipermail/commits/2019-May/013801.html ] |
Assignee | Varun Gupta [ varun ] | Sergei Petrunia [ psergey ] |
Status | In Progress [ 3 ] | In Review [ 10002 ] |
Assignee | Sergei Petrunia [ psergey ] | Varun Gupta [ varun ] |
Status | In Review [ 10002 ] | Stalled [ 10000 ] |
Fix Version/s | 10.4.6 [ 23412 ] | |
Fix Version/s | 10.4 [ 22408 ] | |
Resolution | Fixed [ 1 ] | |
Status | Stalled [ 10000 ] | Closed [ 6 ] |
Link |
This issue causes |
Workflow | MariaDB v3 [ 92854 ] | MariaDB v4 [ 155807 ] |
Patch
http://lists.askmonty.org/pipermail/commits/2019-March/013531.html