Comment 4 for bug 1254233

Revision history for this message
Mike Benshoof (mbenshoof) wrote :

Here is a quick fix that works well on both 5.6 as well as previous versions that use have_innodb:

2331c2331,2332
< if [ "${have_innodb}" = "YES" ]; then
---
> local innodb_ver="$(get_var "innodb_version" "$dir/mysql-variables")"
> if [[ "${have_innodb}" = "YES" || "${innodb_ver}" > "5.6.1" ]]; then

As was mentioned, with the increase in usage of 5.6 and the common use of InnoDB, this bug makes it tough to get a quick snapshot when first logging onto a server.