[MDEV-21042] REORGANIZE PARTITION is not working well on LIST COLUMNS partition type Created: 2019-11-13 Updated: 2023-04-27 |
|
| Status: | Confirmed |
| Project: | MariaDB Server |
| Component/s: | Partitioning |
| Affects Version/s: | 10.3.13, 10.2, 10.3, 10.4 |
| Fix Version/s: | 10.4 |
| Type: | Bug | Priority: | Major |
| Reporter: | Cho | Assignee: | Igor Babaev |
| Resolution: | Unresolved | Votes: | 1 |
| Labels: | None | ||
| Environment: |
centos7 |
||
| Description |
|
Hi, I have a question about partition reorganizing while I'm trying to test. I use LIST COLUMNS type and DEFAULT partition. I want to split (reorganize) specific value of DEFAULT partition into other new partitions. Here is the script. --------------------------------------------------------------------------------------------------- CREATE TABLE PAR_TEST ALTER TABLE PAR_TEST PARTITION BY LIST COLUMNS (COL) ( INSERT INTO PAR_TEST ------------------------------------------------------------------------------------------------- <TEST1> <TEST2> -------------------------------------------------------------------------------------------------- The only difference between TEST1 AND TEST2 is just the order of 'P_11111' and 'P_DEFAULT' in REORGANIZE PARTITION clause. When I select a certain partition, TEST1 shows the result what I expected. But, If I select DEFAULT partition, it shows nothing. And the values which should be in DEFAULT partition are in 'P_11111' partition. I wonder if it is intended or bug. Thank you. |
| Comments |
| Comment by Alice Sherepa [ 2019-11-18 ] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Thanks a lot! Looks like a bug, I repeated on 10.2-10.4:
|