MySQL 5.6 Upgrade - Definição incorreta da tabela mysql.proc

1

Após atualizar o MySQL para a versão 5.6.10 da versão 5.5, estou recebendo os seguintes erros ao iniciar o servidor MySQL:

2013-03-19 05:32:38 2666 [Note] /usr/sbin/mysqld: ready for connections. Version: '5.6.10'  socket: '/var/lib/mysql/mysql.sock'  port: 3306  MySQL Community Server (GPL)
2013-03-19 05:43:27 2666 [ERROR] Incorrect definition of table mysql.proc: expected column 'comment' at position 15 to have type text, found type char(64).

Eu verifiquei a tabela mysql.proc e o campo de comentário está definido como TEXT. Eu corri mysql_upgrade após a atualização. Eu tentei executá-lo novamente com --force depois de ver esse erro, mas isso não resolveu.

    
por Max M. 19.03.2013 / 16:31

1 resposta

1

Esta questão no stackoverflow é vinculada a um relatório de bug que menciona:

"start the server with the --skip-grant-tables option to cause it to skip the normal grant table checks, then run mysql_upgrade. ... Then stop the server and restart it normally."
O

URL de referência do relatório de erros foi: link

    
por 19.03.2013 / 17:36