[MDEV-9237] Support partitioning for underlying MERGE tables Created: 2015-12-04 Updated: 2017-05-29 Resolved: 2017-05-29 |
|
| Status: | Closed |
| Project: | MariaDB Server |
| Component/s: | Partitioning |
| Fix Version/s: | N/A |
| Type: | Task | Priority: | Minor |
| Reporter: | James R. Leu | Assignee: | Sergei Golubchik |
| Resolution: | Won't Fix | Votes: | 0 |
| Labels: | None | ||
| Description |
|
To reproduce setup MERGE table as follows
Any select from the tables will produce an error
|
| Comments |
| Comment by James R. Leu [ 2015-12-04 ] |
|
I also filed a bug report with MySQL, they have closed it as 'Not a Bug'. With that being the case, I would like to convert this to a feature request. |
| Comment by Sergei Golubchik [ 2017-05-29 ] |
|
Sorry, but this cannot work. Partitioned tables technically use "partition" storage engine that in your case uses MyISAM for individual partitions. MERGE is a group of MyISAM tables. You cannot create a MERGE of tables in any other storage engine, including "partition" storage engine. |