Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.2(EOL)
-
None
-
10.2.2-3
Description
Output |
MariaDB [test]> create table t1 (i int, j int) partition by list columns(i,j) (partition p1 values in ((10,10)), partition p2 default); |
Query OK, 0 rows affected (0.65 sec) |
|
MariaDB [test]> insert into t1 values (10,1); |
Query OK, 1 row affected (0.06 sec)
|
|
MariaDB [test]> select * from t1 where i = 10; |
Empty set (0.00 sec) |
MariaDB [test]> explain partitions select * from t1 where i = 10; |
+------+-------------+-------+------------+------+---------------+------+---------+------+------+-------------+ |
| id | select_type | table | partitions | type | possible_keys | key | key_len | ref | rows | Extra | |
+------+-------------+-------+------------+------+---------------+------+---------+------+------+-------------+ |
| 1 | SIMPLE | t1 | p1 | ALL | NULL | NULL | NULL | NULL | 2 | Using where | |
+------+-------------+-------+------------+------+---------------+------+---------+------+------+-------------+ |
1 row in set (0.00 sec) |
Test case |
drop table if exists t1; |
create table t1 (i int, j int) partition by list columns(i,j) (partition p1 values in ((10,10)), partition p2 default); |
insert into t1 values (10,1); |
select * from t1 where i = 10; |
Attachments
Issue Links
- relates to
-
MDEV-8348 Add catchall to all table partitioning for list partitions
-
- Closed
-
Activity
Summary | Wrong result - uery does not retrieve values from default partition on a table partitioned by list columns | Wrong result - query does not retrieve values from default partition on a table partitioned by list columns |
Sprint | 10.2.2-3 [ 94 ] |
Rank | Ranked higher |
Status | Open [ 1 ] | In Progress [ 3 ] |
Status | In Progress [ 3 ] | Stalled [ 10000 ] |
Status | Stalled [ 10000 ] | In Progress [ 3 ] |
Assignee | Oleksandr Byelkin [ sanja ] | Sergei Petrunia [ psergey ] |
Status | In Progress [ 3 ] | In Review [ 10002 ] |
Assignee | Sergei Petrunia [ psergey ] | Oleksandr Byelkin [ sanja ] |
Status | In Review [ 10002 ] | Stalled [ 10000 ] |
Fix Version/s | 10.2.2 [ 22013 ] | |
Fix Version/s | 10.2 [ 14601 ] | |
Resolution | Fixed [ 1 ] | |
Status | Stalled [ 10000 ] | Closed [ 6 ] |
Workflow | MariaDB v3 [ 76946 ] | MariaDB v4 [ 150884 ] |