how to find innodb plugin version in mysql??

Posted by Shay 
how to find innodb plugin version in mysql??
December 21, 2011 03:00PM
how do I find Innodb Plugin version number in MySQL.
Re: how to find innodb plugin version in mysql??
December 21, 2011 03:21PM
here is a query that you can use to get detailed info

 SELECT * FROM Plugins WHERE PLUGIN_NAME LIKE '%innodb%' AND PLUGIN_TYPE LIKE 'STORAGE ENGINE';

you can also do the following to get full version no. (or look at the error log where Innodb stores full version no.)

SELECT @@innodb_version;



Edited 1 time(s). Last edit at 12/21/2011 03:27PM by sherry.
Sorry, only registered users may post in this forum.