Comment 2 for bug 1327817

Revision history for this message
Ramesh Sivaraman (rameshvs02) wrote :

One more version name difference noticed in innodb_version string in PS-5.5 rpm/deb packages. "-35.1" repeated twice in innodb version name

{code}

Ubuntu
----------

show global variables like '%version%';
+-------------------------+--------------------------------------------------+
| Variable_name | Value |
+-------------------------+--------------------------------------------------+
| innodb_version | 5.5.37-35.1-35.1 |
| protocol_version | 10 |
| slave_type_conversions | |
| version | 5.5.37-35.1 |
| version_comment | Percona Server (GPL), Release 35.1, Revision 666 |
| version_compile_machine | x86_64 |
| version_compile_os | debian-linux-gnu |
+-------------------------+--------------------------------------------------+
7 rows in set (0.00 sec)

mysql>

CentOS
----------

mysql> show global variables like '%version%';
+-------------------------+--------------------------------------------------+
| Variable_name | Value |
+-------------------------+--------------------------------------------------+
| innodb_version | 5.5.37-35.1-35.1 |
| protocol_version | 10 |
| slave_type_conversions | |
| version | 5.5.37-35.1 |
| version_comment | Percona Server (GPL), Release 35.1, Revision 666 |
| version_compile_machine | x86_64 |
| version_compile_os | Linux |
+-------------------------+--------------------------------------------------+
7 rows in set (0.00 sec)

mysql>
{code}