New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Partitioning is missing in Structure page UI #15276
Comments
|
@sky93 Yes, strange .. |
|
Same issue here any fix for this bug? |
|
@DanialV @sky93 This is not a bug, you do not have the partition plugin enabled. run SHOW PLUGINSIf you have https://demo.phpmyadmin.net/QA_4_8/server_plugins.php?server=1 |
|
There's a problem here. In MariaDB when I run CREATE TABLE ti (id INT, amount DECIMAL(7,2), tr_date DATE)
ENGINE=INNODB
PARTITION BY HASH( MONTH(tr_date) )
PARTITIONS 6;And I could verify partitions using this query: SELECT PARTITION_NAME, TABLE_ROWS FROM INFORMATION_SCHEMA.PARTITIONS WHERE TABLE_NAME='ti'So partitioning is enabled but doesn't show up in I guess partitioning is enabled in https://demo.phpmyadmin.net/QA_4_8 (Mysql) server too but not showing up in |
|
@sky93 Thanks ! |
CREATE TABLE ti (id INT, amount DECIMAL(7,2), tr_date DATE)
ENGINE=MyISAM
PARTITION BY HASH( MONTH(tr_date) )
PARTITIONS 6;MySQL 5.7: MySQL 8.0: Notice the MyISAM |
|
MariaDB is not affected. |
|
https://dev.mysql.com/doc/refman/8.0/en/partitioning.html
|
Yes in MySQL 8.0 MyISAM engine doesn't support partitioning. It seems partitioning is enabled by default in MySQL 8.0. |
|
@DanialV @sky93 Can you please apply the patch 09d20e8 and tell me if everything looks okay Tested on https://phpmyadmin-pr-7.wdes.eu.org https://phpmyadmin-pr-6.wdes.eu.org (public/public) and was OK If you approve the change it goes directly for next release (4.8.6) 🎉 🚀 |
|
Yes it's now fixed 🎉😍 Thank you so much for the fix. |
Signed-off-by: William Desportes <williamdes@wdes.fr>
|
The fix will be part of |
|
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Hello,
I cannot find Partitioning feature in table structure tab. I'm using the latest version of PMA (4.8.5) but I can't find partitioning section anywhere. How can I bring partitioning feature back ?
The text was updated successfully, but these errors were encountered: