After upgrading MySQL to 5.7.8-rc and loging to server I got error:
Table 'performance_schema.session_variables' doesn't exist
I can't find any solution for this. Can you help ?
After upgrading MySQL to 5.7.8-rc and loging to server I got error:
Table 'performance_schema.session_variables' doesn't exist
I can't find any solution for this. Can you help ?
as per http://bugs.mysql.com/bug.php?id=78159 worked for me.
For my system the problem ended up being that I still had Mysql 5.6 installed and so the mysql_upgrade.exe from that installation was being called instead of the one for 5.7. Navigate to
C:\Program Files\MySQL\MySQL Server 5.7\bin
and run.\mysql_upgrade.exe -u root
If, while using the
mysql_upgrade -u root -p --force
command You get this error:just add the
sudo
before the command. That worked for me, and I solved my problem. So, it's:sudo mysql_upgrade -u root -p --force
:)