I am just exploring XtraDB cluster for a production rollout and is confused about the table partitioning support it provides. By the way the version that I am using is 5.6. I created a table with range partition and loaded data. When I am explaining the select, it is not showing the partitions which will be used. The same query on MySQL normal database is showing me the partitions which will be used to fetch the data.
On checking filesystem I do can see the partitions. But, not able to see it in explain plan with XtraDB. Is there any setting to tweak ? Or is it actually using partitions ? Was not able to find any documentation which talks about partition support on XtraDB cluster.
I think,there is a small difference in the output resultset from MySQL’s explain and explain of XtraDB cluster. In MySQL’s explain it shows the partitions used to get the data. To get similar output, using xtraDB cluster we have to use explain partitions. So, in short partitions are used which solves my problem.