When I run show variables like 'have_partitioning';
it return empty record. When I run show plugins
I got this result partition | ACTIVE | STORAGE ENGINE|NULL | GPL| My MySQL version is 5.6.29 and I'm running it in CentOS. What I have to do to get Yes when I run 'show variables like 'have_partitinoing
-
1"What I have to do to get" -- Sorry; the earth has moved out from under you. Why do you have to run that old query? Why do you need to ask anything other than Version >= 5.1 ?Rick James– Rick James2016年04月04日 23:11:58 +00:00Commented Apr 4, 2016 at 23:11
1 Answer 1
have_partitioning variable is removed from MySQL version is 5.6.29. That's why it is not showing.Instead of it you can use show plugins for knowing partition is enabled or not.If status value is Active then it is enabled.You can also disable partition by adding skip-partition=True while starting mysql server.