You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What needs to be improved:
client needs to check the version of mysql before gathering any data.
What needs to be change to accomplish this:
something like this:
MYVERSION=`mysql -Bse "SELECT substring_index(version(),'.',2)"`
if [ "$MYVERSION" = '5.1' ] || [ "$MYVERSION" = '5.0' ] ; then
do something here
else
echo "UNSUPPORTED MYSQL VERSION"
exit 1
fi
Original issue reported on code.google.com by [email protected] on 3 Sep 2009 at 3:41
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 3 Sep 2009 at 3:41The text was updated successfully, but these errors were encountered: